Changeset 3021967
- Timestamp:
- 01/15/2024 03:59:30 PM (2 years ago)
- Location:
- wp-table-editor/trunk
- Files:
-
- 5 edited
-
includes/admin/function.php (modified) (1 diff)
-
includes/admin/row_action.php (modified) (1 diff)
-
includes/public/row_action.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-table-editor/trunk/includes/admin/function.php
r3003312 r3021967 151 151 table_datatable int(11) NOT NULL, 152 152 table_rowstatus enum('all','active') NOT NULL, 153 table_checkbox enum('yes','no') NOT NULL, 153 154 table_note text NOT NULL, 154 155 table_keytable enum('no','yes') NOT NULL, -
wp-table-editor/trunk/includes/admin/row_action.php
r2998245 r3021967 107 107 $shortcode = explode(' ', ltrim($value))[0]; 108 108 if(strpos($shortcode, "[") === 0 && shortcode_exists(trim($shortcode, "["))){ 109 $sub_array[] = do_shortcode( $value);109 $sub_array[] = do_shortcode(html_entity_decode($value)); 110 110 }else{ 111 111 $sub_array[] = $value; -
wp-table-editor/trunk/includes/public/row_action.php
r2998245 r3021967 96 96 $shortcode = explode(' ', ltrim($value))[0]; 97 97 if(strpos($shortcode, "[") === 0 && shortcode_exists(trim($shortcode, "["))){ 98 $sub_array[] = do_shortcode( $value);98 $sub_array[] = do_shortcode(html_entity_decode($value)); 99 99 }else{ 100 100 $sub_array[] = $value; -
wp-table-editor/trunk/main.php
r3003312 r3021967 4 4 Plugin URI: https://wptableeditor.com/documentation/ 5 5 Description: Table Editor is a WordPress plugin used to quickly create tables from Excel, CSV, JSON and other data sources. Allows you to create beautiful sortable and responsive tables inside your posts, pages, custom post types or widget area. 6 Version: 1.4. 16 Version: 1.4.2 7 7 Author: wptableeditor.com 8 8 Author URI: https://wptableeditor.com/ … … 15 15 if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) ); 16 16 if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) ); 17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.4. 1' );17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.4.2' ); 18 18 if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) ); 19 19 if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) ); -
wp-table-editor/trunk/readme.txt
r3003312 r3021967 3 3 Tags: table, table builder, table editor, datatables 4 4 Requires at least: 5.9.3 5 Tested up to: 6.4. 15 Tested up to: 6.4.2 6 6 Requires PHP: 7.4 7 Stable tag: 1.4. 17 Stable tag: 1.4.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 74 74 75 75 == Changelog == 76 77 = 1.4.2 = 78 * Code Optimization 76 79 77 80 = 1.4.1 =
Note: See TracChangeset
for help on using the changeset viewer.