Skip to content

Commit

Permalink
28-06-2022
Browse files Browse the repository at this point in the history
### 1.26.2
[Fixed] Uninstall checked on wrong plugin slug
  • Loading branch information
smileBeda authored Jun 28, 2022
2 parents bc7b3b1 + dc389e6 commit 3427a05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 343 deletions.
339 changes: 0 additions & 339 deletions LICENSE.txt

This file was deleted.

3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,9 @@ function my_shortcodes( $shortcodes ) {

## Changelog

### 1.26.2
* [Fixed] Uninstall checked on wrong plugin slug

### 1.26.1
* [Fixed] Missing Text Domains and some Comments for CPCS Review.

Expand Down
5 changes: 4 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.tukutoi.com/
Tags: shortcodes, classicpress
Requires at least: 1.0.0
Tested up to: 4.9.99
Stable tag: 1.26.1
Stable tag: 1.26.2
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -273,6 +273,9 @@ function my_shortcodes( $shortcodes ) {

== Changelog ==

= 1.26.2 =
* [Fixed] Uninstall checked on wrong plugin slug

= 1.26.1 =
* [Fixed] Missing Text Domains and some Comments for CPCS Review.

Expand Down
4 changes: 2 additions & 2 deletions tkt-shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Plugin Name: TukuToi ShortCodes
* Plugin URI: https://www.tukutoi.com/
* Description: A library of indispensable ShortCodes for ClassicPress (and WordPress without Blocks) Websites.
* Version: 1.26.1
* Version: 1.26.2
* Author: TukuToi
* Author URI: https://www.tukutoi.com/
* License: GPL-2.0+
Expand All @@ -34,7 +34,7 @@
* Start at version 1.0.0 and use SemVer - https://semver.org
* Rename this for your plugin and update it as you release new versions.
*/
define( 'TKT_SHORTCODES_VERSION', '1.26.1' );
define( 'TKT_SHORTCODES_VERSION', '1.26.2' );

/**
* 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-shortcodes/tkt-shortcodes.php' !== $_REQUEST['plugin']
|| 'tukutoi-shortcodes/tkt-shortcodes.php' !== $_REQUEST['plugin']
|| 'delete-plugin' !== $_REQUEST['action']
|| ! check_ajax_referer( 'updates', '_ajax_nonce' )
|| ! current_user_can( 'activate_plugins' )
Expand Down

0 comments on commit 3427a05

Please sign in to comment.