Plugin Directory

Changeset 3021967


Ignore:
Timestamp:
01/15/2024 03:59:30 PM (2 years ago)
Author:
wptableeditor
Message:

Code Optimization

Location:
wp-table-editor/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • wp-table-editor/trunk/includes/admin/function.php

    r3003312 r3021967  
    151151                table_datatable int(11) NOT NULL,
    152152                table_rowstatus enum('all','active') NOT NULL,
     153                table_checkbox enum('yes','no') NOT NULL,
    153154                table_note text NOT NULL,
    154155                table_keytable enum('no','yes') NOT NULL,
  • wp-table-editor/trunk/includes/admin/row_action.php

    r2998245 r3021967  
    107107                        $shortcode = explode(' ', ltrim($value))[0];
    108108                        if(strpos($shortcode, "[") === 0 && shortcode_exists(trim($shortcode, "["))){
    109                             $sub_array[] = do_shortcode($value);
     109                            $sub_array[] = do_shortcode(html_entity_decode($value));
    110110                        }else{
    111111                            $sub_array[] = $value;
  • wp-table-editor/trunk/includes/public/row_action.php

    r2998245 r3021967  
    9696                                $shortcode = explode(' ', ltrim($value))[0];
    9797                                if(strpos($shortcode, "[") === 0 && shortcode_exists(trim($shortcode, "["))){
    98                                     $sub_array[] = do_shortcode($value);
     98                                    $sub_array[] = do_shortcode(html_entity_decode($value));
    9999                                }else{
    100100                                    $sub_array[] = $value;
  • wp-table-editor/trunk/main.php

    r3003312 r3021967  
    44Plugin URI: https://wptableeditor.com/documentation/
    55Description: 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.1
     6Version: 1.4.2
    77Author: wptableeditor.com
    88Author URI: https://wptableeditor.com/
     
    1515if ( ! defined( 'WPTABLEEDITOR_ASSETS' ) ) define( 'WPTABLEEDITOR_ASSETS', plugins_url( 'assets/', __FILE__ ) );
    1616if ( ! defined( 'WPTABLEEDITOR_VENDOR' ) ) define( 'WPTABLEEDITOR_VENDOR', plugins_url( 'vendor/', __FILE__ ) );
    17 if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.4.1' );
     17if ( ! defined( 'WPTABLEEDITOR_VERSION' ) ) define( 'WPTABLEEDITOR_VERSION', '1.4.2' );
    1818if ( ! defined( 'WPTABLEEDITOR_SLUG' ) ) define( 'WPTABLEEDITOR_SLUG', basename( plugin_dir_path( __FILE__ ) ) );
    1919if ( ! defined( 'WPTABLEEDITOR_MAIN' ) ) define( 'WPTABLEEDITOR_MAIN', plugin_basename( __FILE__ ) );
  • wp-table-editor/trunk/readme.txt

    r3003312 r3021967  
    33Tags: table, table builder, table editor, datatables
    44Requires at least: 5.9.3
    5 Tested up to: 6.4.1
     5Tested up to: 6.4.2
    66Requires PHP: 7.4
    7 Stable tag: 1.4.1
     7Stable tag: 1.4.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7474
    7575== Changelog ==
     76
     77= 1.4.2 =
     78* Code Optimization
    7679
    7780= 1.4.1 =
Note: See TracChangeset for help on using the changeset viewer.