-
Notifications
You must be signed in to change notification settings - Fork 108
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
I wanted to send a quick note on a bug i discovered in the Delete Files script when uninstalling the plugin.
Line 1333
$wpdb->query( "DROP TABLE IF EXISTS $code_snippets->table" );
this causes private class access failure.
Should be:
$wpdb->query( "DROP TABLE IF EXISTS $code_snippets_table" );
this new code tested out correctly. although i am not running Multi-site, the same change may need to be added to line 1329.
Thanks for the awesome plugin.
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working