Skip to content

Commit

Permalink
28-06-2022
Browse files Browse the repository at this point in the history
### 1.8.9
[Fixed] Uninstall checked on wrong plugin slug
  • Loading branch information
smileBeda committed Jun 28, 2022
1 parent a2e4a6c commit 75d52cb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

## Changelog

### 1.8.9
[Fixed] Uninstall checked on wrong plugin slug

### 1.8.7
[Fixed] Undefined Global Header

Expand Down
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: templates, archives, design
Requires at least: 4.9.0
Requires PHP: 7.0.0
Tested up to: 4.9.99
Stable tag: 1.8.7
Stable tag: 1.8.9
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -15,6 +15,9 @@ TukuToi Template Builder allows you to create any kind of Template for your Word

== Changelog ==

= 1.8.9 =
[Fixed] Uninstall checked on wrong plugin slug

= 1.8.7 =
[Fixed] Undefined Global Header

Expand Down
4 changes: 2 additions & 2 deletions tkt-template-builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Plugin Name: TukuToi Template Builder
* Plugin URI: https://www.tukutoi.com/
* Description: TukuToi Template Builder allows you to create any kind of Template for your WordPress or ClassicPress website, directly from within the Admin area, without editing PHP Files.
* Version: 1.8.7
* Version: 1.8.9
* Author: bedas
* Requires at least: 1.0.0
* Tested up to: 4.9.99
Expand All @@ -37,7 +37,7 @@
* Start at version 0.0.1 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'TKT_TEMPLATE_BUILDER_VERSION', '1.8.7' );
define( 'TKT_TEMPLATE_BUILDER_VERSION', '1.8.9' );

/**
* The code that runs during plugin activation.
Expand Down
2 changes: 1 addition & 1 deletion uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function plugin_name_uninstall() {
|| empty( $_REQUEST )
|| ! isset( $_REQUEST['plugin'] )
|| ! isset( $_REQUEST['action'] )
|| 'tkt-template-builder/tkt-template-builder.php' !== $_REQUEST['plugin']
|| 'tukutoi-template-builder/tkt-template-builder.php' !== $_REQUEST['plugin']
|| 'delete-plugin' !== $_REQUEST['action']
|| ! check_ajax_referer( 'updates', '_ajax_nonce' )
|| ! current_user_can( 'activate_plugins' )
Expand Down

0 comments on commit 75d52cb

Please sign in to comment.