Bug in Delete Script
-
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.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Bug in Delete Script’ is closed to new replies.