Easy Table - Version 1.5.2

Version Description

  • Fixed: Bug on 1.5/1.5.1, Easy Table does not work in WordPress prior to version 3.6
Download this release

Release Info

Developer takien
Plugin Icon wp plugin Easy Table
Version 1.5.2
Comparing to
See all releases

Code changes from version 1.5.1 to 1.5.2

Files changed (3) hide show
  1. easy-table.php +3 -2
  2. inc/compatibility.php +7 -0
  3. readme.txt +4 -1
easy-table.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Table
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
- Version: 1.5.1
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -74,6 +74,7 @@ function __construct(){
74
  add_action('contextual_help', array(&$this,'easy_table_help'));
75
 
76
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
 
77
 
78
  $conflict = false;
79
 
@@ -105,7 +106,7 @@ function __construct(){
105
  private function easy_table_base($return){
106
  $easy_table_base = Array(
107
  'name' => 'Easy Table',
108
- 'version' => '1.5.1',
109
  'plugin-domain' => 'easy-table'
110
  );
111
  return $easy_table_base[$return];
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 1.5.2
8
  Author URI: http://takien.com/
9
  */
10
 
74
  add_action('contextual_help', array(&$this,'easy_table_help'));
75
 
76
  include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
77
+ include_once( dirname(__FILE__) . '/inc/compatibility.php' ); /* since 1.5.2 */
78
 
79
  $conflict = false;
80
 
106
  private function easy_table_base($return){
107
  $easy_table_base = Array(
108
  'name' => 'Easy Table',
109
+ 'version' => '1.5.2',
110
  'plugin-domain' => 'easy-table'
111
  );
112
  return $easy_table_base[$return];
inc/compatibility.php ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
1
+ <?php
2
+ if(!function_exists('shortcode_exists')) {
3
+ function shortcode_exists( $tag ) {
4
+ global $shortcode_tags;
5
+ return array_key_exists( $tag, $shortcode_tags );
6
+ }
7
+ }
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://takien.com/donate
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.9.1
7
- Stable tag: 1.5.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -248,6 +248,9 @@ No
248
 
249
  == Changelog ==
250
 
 
 
 
251
  = 1.5.1 =
252
  * Fixed: Bug on 1.5, Easy Table does not work if TablePress is active even when custom shortcode is set.
253
 
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.9.1
7
+ Stable tag: 1.5.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
248
 
249
  == Changelog ==
250
 
251
+ = 1.5.2 =
252
+ * Fixed: Bug on 1.5/1.5.1, Easy Table does not work in WordPress prior to version 3.6
253
+
254
  = 1.5.1 =
255
  * Fixed: Bug on 1.5, Easy Table does not work if TablePress is active even when custom shortcode is set.
256