We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
Originally posted here
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I wanted to send a quick note on a bug i discovered in the Delete Files script when uninstalling the plugin.
Line 1333
this causes private class access failure.
Should be:
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.
The text was updated successfully, but these errors were encountered: