Plugin Directory

Changeset 2135597

Timestamp:
08/07/2019 12:31:49 PM (5 years ago)
Author:
momo360modena
Message:

Update to version 2.5.5 from GitHub

Location:
simple-tags
Files:
2 added
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • simple-tags/tags/2.5.5/readme.md

    r2085138 r2135597  
    88* **Requires at least:** 3.3
    99* **Tested up to:** 5.2
    10 * **Stable tag:** 2.5.4
     10* **Stable tag:** 2.5.
    1111* **Requires PHP:** 5.6
    1212* **License:** GPLv2 or later
     
    8484## Changelog ##
    8585
     86
     87
    8688* Version 2.5.4
    8789    * Bug #114 : fix tag disappear with quick edit
  • simple-tags/tags/2.5.5/readme.txt

    r2085138 r2135597  
    66Requires at least: 3.3
    77Tested up to: 5.2
    8 Stable tag: 2.5.4
     8Stable tag: 2.5.
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    7676== Changelog ==
    7777
     78
     79
    7880* Version 2.5.4
    7981    * Bug #114 : fix tag disappear with quick edit
  • simple-tags/tags/2.5.5/simple-tags.php

    r2085138 r2135597  
    44Plugin URI: https://github.com/herewithme/simple-tags
    55Description: Extended Tagging for WordPress : Terms suggestion, Mass Edit Terms, Auto link Terms, Ajax Autocompletion, Click Terms, Advanced manage terms, etc.
    6 Version: 2.5.4
     6Version: 2.5.
    77Requires PHP: 5.6
    88Author: Amaury BALMER
     
    3636}
    3737
    38 // Do a PHP version check, require 5.6 or newer
    39 if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) {
    40     // Silently deactivate plugin, keeps admin usable
    41     if ( function_exists( 'deactivate_plugins' ) ) {
    42         deactivate_plugins( plugin_basename( __FILE__ ), true );
    43     }
    44 
    45     //Spit out die messages
    46     wp_die( sprintf( __( 'Your PHP version is too old, please upgrade to a newer version. Your version is %s, Simple Tags requires %s. Remove the plugin from WordPress plugins directory with FTP client.', 'simpletags' ), phpversion(), '5.0.0' ) );
    47 }
    48 
    49 define( 'STAGS_VERSION', '2.5.4' );
     38define( 'STAGS_VERSION', '2.5.5' );
     39define( 'STAGS_MIN_PHP_VERSION', '5.6' );
    5040define( 'STAGS_OPTIONS_NAME', 'simpletags' ); // Option name for save settings
    5141define( 'STAGS_OPTIONS_NAME_AUTO', 'simpletags-auto' ); // Option name for save settings auto terms
     
    5343define( 'STAGS_URL', plugins_url( '', __FILE__ ) );
    5444define( 'STAGS_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
    5556
    5657require STAGS_DIR . '/inc/functions.inc.php'; // Internal functions
  • simple-tags/trunk/readme.md

    r2085138 r2135597  
    88* **Requires at least:** 3.3
    99* **Tested up to:** 5.2
    10 * **Stable tag:** 2.5.4
     10* **Stable tag:** 2.5.
    1111* **Requires PHP:** 5.6
    1212* **License:** GPLv2 or later
     
    8484## Changelog ##
    8585
     86
     87
    8688* Version 2.5.4
    8789    * Bug #114 : fix tag disappear with quick edit
  • simple-tags/trunk/readme.txt

    r2085138 r2135597  
    66Requires at least: 3.3
    77Tested up to: 5.2
    8 Stable tag: 2.5.4
     8Stable tag: 2.5.
    99Requires PHP: 5.6
    1010License: GPLv2 or later
     
    7676== Changelog ==
    7777
     78
     79
    7880* Version 2.5.4
    7981    * Bug #114 : fix tag disappear with quick edit
  • simple-tags/trunk/simple-tags.php

    r2085138 r2135597  
    44Plugin URI: https://github.com/herewithme/simple-tags
    55Description: Extended Tagging for WordPress : Terms suggestion, Mass Edit Terms, Auto link Terms, Ajax Autocompletion, Click Terms, Advanced manage terms, etc.
    6 Version: 2.5.4
     6Version: 2.5.
    77Requires PHP: 5.6
    88Author: Amaury BALMER
     
    3636}
    3737
    38 // Do a PHP version check, require 5.6 or newer
    39 if ( version_compare( PHP_VERSION, '5.6.0', '<' ) ) {
    40     // Silently deactivate plugin, keeps admin usable
    41     if ( function_exists( 'deactivate_plugins' ) ) {
    42         deactivate_plugins( plugin_basename( __FILE__ ), true );
    43     }
    44 
    45     //Spit out die messages
    46     wp_die( sprintf( __( 'Your PHP version is too old, please upgrade to a newer version. Your version is %s, Simple Tags requires %s. Remove the plugin from WordPress plugins directory with FTP client.', 'simpletags' ), phpversion(), '5.0.0' ) );
    47 }
    48 
    49 define( 'STAGS_VERSION', '2.5.4' );
     38define( 'STAGS_VERSION', '2.5.5' );
     39define( 'STAGS_MIN_PHP_VERSION', '5.6' );
    5040define( 'STAGS_OPTIONS_NAME', 'simpletags' ); // Option name for save settings
    5141define( 'STAGS_OPTIONS_NAME_AUTO', 'simpletags-auto' ); // Option name for save settings auto terms
     
    5343define( 'STAGS_URL', plugins_url( '', __FILE__ ) );
    5444define( 'STAGS_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
     45
     46
     47
     48
     49
     50
     51
     52
     53
     54
     55
    5556
    5657require STAGS_DIR . '/inc/functions.inc.php'; // Internal functions
Note: See TracChangeset for help on using the changeset viewer.