Hello everyone
I've upgraded to WPMU 2.6 and I'm using NextGen Gallery 0.96
OK, when I upload files to gallery - everything is OK, but when I try to upload files using Flash based upload (allows to upload multiple files at once) - get this error:
ERROR: something.jpg :
Fatal error: Call to undefined function wpmu_enable_function() in .../wp-content/plugins/nextgen-gallery/admin/wp25/functions.php on line 711
Line 709-717 and below are:
function check_quota() {
// Only for WPMU
if ( (IS_WPMU) && wpmu_enable_function('wpmuQuotaCheck'))
if( $error = upload_is_user_over_quota( false ) ) {
nggallery::show_error( __( 'Sorry, you have used your space allocation. Please delete some files to upload more files.','nggallery' ) );
return true;
}
return false;
}