Ninja Tables – WP Data Table Plugin for WordPress - Version 2.0.0

Version Description

Download this release

Release Info

Developer techjewel
Plugin Icon 128x128 Ninja Tables – WP Data Table Plugin for WordPress
Version 2.0.0
Comparing to
See all releases

Code changes from version 1.9.9 to 2.0.0

admin/NinjaTablesAdmin.php CHANGED
@@ -444,6 +444,7 @@ class NinjaTablesAdmin {
444
 
445
  $column_counter = 1;
446
  foreach ( $header as $item ) {
 
447
  $key = $this->url_slug($item);
448
  $key = sanitize_title( $key, 'ninja_column_'.$column_counter, 'display' );
449
  $counter = 1;
444
 
445
  $column_counter = 1;
446
  foreach ( $header as $item ) {
447
+ $item = trim(strip_tags($item));
448
  $key = $this->url_slug($item);
449
  $key = sanitize_title( $key, 'ninja_column_'.$column_counter, 'display' );
450
  $counter = 1;
includes/NinjaTableClass.php CHANGED
@@ -68,7 +68,7 @@ class NinjaTableClass {
68
  */
69
  public function __construct() {
70
  $this->plugin_name = 'ninja-tables';
71
- $this->version = '1.9.9';
72
  $this->load_dependencies();
73
  $this->set_locale();
74
  $this->define_admin_hooks();
68
  */
69
  public function __construct() {
70
  $this->plugin_name = 'ninja-tables';
71
+ $this->version = '2.0.0';
72
  $this->load_dependencies();
73
  $this->set_locale();
74
  $this->define_admin_hooks();
includes/libs/TableDrivers/NinjaFooTable.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php namespace NinjaTable\TableDrivers;
2
 
3
  class NinjaFooTable {
4
- public static $version = '1.9.9';
5
 
6
  public static function run( $tableArray ) {
7
  self::enqueue_assets();
1
  <?php namespace NinjaTable\TableDrivers;
2
 
3
  class NinjaFooTable {
4
+ public static $version = '2.0.0';
5
 
6
  public static function run( $tableArray ) {
7
  self::enqueue_assets();
ninja-tables.php CHANGED
@@ -16,7 +16,7 @@
16
  * Plugin Name: Ninja Tables
17
  * Plugin URI: https://wpmanageninja.com/plugins/ninja-tables/
18
  * Description: The Easiest & Fastest Responsive Table Plugin on WordPress. Multiple templates, drag-&-drop live table builder, multiple color scheme, and styles.
19
- * Version: 1.9.9
20
  * Author: WPManageNinja
21
  * Author URI: https://wpmanageninja.com/
22
  * License: GPL-2.0+
@@ -32,7 +32,7 @@ if (!defined('WPINC')) {
32
 
33
  define('NINJA_TABLES_DIR_URL', plugin_dir_url(__FILE__));
34
  define('NINJA_TABLES_PUBLIC_DIR_URL', NINJA_TABLES_DIR_URL.'public/');
35
- define('NINJA_TABLES_VERSION', '1.9.9');
36
 
37
  /**
38
  * The code that runs during plugin activation.
16
  * Plugin Name: Ninja Tables
17
  * Plugin URI: https://wpmanageninja.com/plugins/ninja-tables/
18
  * Description: The Easiest & Fastest Responsive Table Plugin on WordPress. Multiple templates, drag-&-drop live table builder, multiple color scheme, and styles.
19
+ * Version: 2.0.0
20
  * Author: WPManageNinja
21
  * Author URI: https://wpmanageninja.com/
22
  * License: GPL-2.0+
32
 
33
  define('NINJA_TABLES_DIR_URL', plugin_dir_url(__FILE__));
34
  define('NINJA_TABLES_PUBLIC_DIR_URL', NINJA_TABLES_DIR_URL.'public/');
35
+ define('NINJA_TABLES_VERSION', '2.0.0');
36
 
37
  /**
38
  * The code that runs during plugin activation.
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: WordPress tables Plugin, wp tables, data tables, datatables plugin, table
5
  Requires at least: 4.5
6
  Requires PHP: 5.4 or greater
7
  Tested up to: 4.9.4
8
- Stable tag: 1.9.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
5
  Requires at least: 4.5
6
  Requires PHP: 5.4 or greater
7
  Tested up to: 4.9.4
8
+ Stable tag: 2.0.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11