Bugfixes for the coming version 1.0.6
- Updated uninstall function to delete all plugin settings (bugfix) - Updated counter style internal name in the reference container to correctly link to the right footnote on the page above (bugfix) - Updated footnote hover box styling to not wrap the footnote text on mouse over (bugfix) - Changed 'Love Me' text in the page footer if admin excepts it and set its default value to 'no' git-svn-id: https://plugins.svn.wordpress.org/footnotes/trunk@918065 b8457f37-d9ea-0310-8a92-e5e31aec5664
This commit is contained in:
parent
cab06f8097
commit
4aa6dd4b50
11 changed files with 113 additions and 81 deletions
|
@ -4,7 +4,7 @@
|
|||
* User: Stefan
|
||||
* Date: 15.05.14
|
||||
* Time: 16:21
|
||||
* Version: 1.0
|
||||
* Version: 1.0.6
|
||||
* Since: 1.0
|
||||
*/
|
||||
|
||||
|
@ -15,6 +15,12 @@ if ( !defined( 'WP_UNINSTALL_PLUGIN' ) ) {
|
|||
exit();
|
||||
}
|
||||
|
||||
/*
|
||||
* requires the defines of the plugin
|
||||
* @since 1.0.6
|
||||
*/
|
||||
require_once(dirname(__FILE__) . '/defines.php');
|
||||
|
||||
/* uninstalling the plugin is only allowed for logged in users */
|
||||
if ( !is_user_logged_in() ) {
|
||||
wp_die( __( 'You must be logged in to run this script.', FOOTNOTES_PLUGIN_NAME ) );
|
||||
|
@ -23,4 +29,10 @@ if ( !is_user_logged_in() ) {
|
|||
/* current user needs the permission to (un)install plugins */
|
||||
if ( !current_user_can( 'install_plugins' ) ) {
|
||||
wp_die( __( 'You do not have permission to run this script.', FOOTNOTES_PLUGIN_NAME ) );
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* delete the settings container in the database
|
||||
* @since 1.0.6
|
||||
*/
|
||||
delete_option(FOOTNOTE_SETTINGS_CONTAINER);
|
Reference in a new issue