Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Error


chrishajer
Participant

@chrishajer

I think for bb-plugins.php, you would need to make this change:

if ( function_exists( 'glob' ) && is_callable( 'glob' ) ) {
foreach ( glob(BBPLUGINDIR . '_*.php') as $_plugin ) {
$_data = bb_get_plugin_data( $_plugin );
$_plugins[$_plugin] = $_data ? $_data : true;
}
}

That’s the whole block of code from trunk. Looks like they test now to see if glob is callable, then actually call it. That should fix your glob problem.

Skip to toolbar