After uploading fix
-
in upload-quota-per-user.php line 111
plugin only increase used space if has the meta uqpu_upload_space with a value different than 0 or ”(empty)
you should change this check with this:
`
if (!$uqpu_upload_space)
$uqpu_upload_space = 0;update_user_meta( $user_id, ‘uqpu_upload_space’, $uqpu_upload_space + $size );
`
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘After uploading fix’ is closed to new replies.