You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This used to be a fantastic plugin, but due to changes in Worpress it is mostly broken now. An update to the plugin would be highly appreciated!!!
The core function, locking a plugin, still works
Clicking on the notepad icon to take notes does nothing.
The righthand column for multisite installations is usually giving wrong info - plugins that are activated network-wide are usually marked correctly, but plugins that have only been activated on a single subsite typically don't show up.
Thanks!
The text was updated successfully, but these errors were encountered:
Here's the fix for the right-hand column (which should display which blogs the plugins/themes are active on):
IN class-lock-your-updates-admin.php REPLACE:
// Set blog id so $wpdb will know which table to tweak
$wpdb->set_blog_id( $this_blog[ 'blog_id' ] );
// Get all the blog details
$this_blog = get_blog_details( $this_blog[ 'blog_id' ] );
WITH:
// Get all the blog details
$this_blog = get_blog_details( $this_blog[ 'blog_id' ] );
// Set blog id so $wpdb will know which table to tweak
$wpdb->set_blog_id( $this_blog->blog_id );
The simple reason is that get_blog_details() seems to reset the blog_id (God knows why).
The notepad icon issue I can't fix since it's an Ajax issue.
Hi,
This used to be a fantastic plugin, but due to changes in Worpress it is mostly broken now. An update to the plugin would be highly appreciated!!!
Thanks!
The text was updated successfully, but these errors were encountered: