Plugin Directory

Changeset 758957


Ignore:
Timestamp:
08/20/2013 05:25:24 AM (13 years ago)
Author:
takien
Message:

Fixed bug on 1.3, Update to 1.3.1

Location:
easy-table/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • easy-table/trunk/easy-table.php

    r758917 r758957  
    55Description: Create table in post, page, or widget in easy way.
    66Author: Takien
    7 Version: 1.3
     7Version: 1.3.1
    88Author URI: http://takien.com/
    99*/
     
    8888    $easy_table_base = Array(
    8989                'name'          => 'Easy Table',
    90                 'version'       => '1.3',
     90                'version'       => '1.3.1',
    9191                'plugin-domain' => 'easy-table'
    9292    );
     
    12181218        $option = get_option('easy_table_plugin_option');
    12191219        $limit  = !empty($option['limit']) ? (int)$option['limit'] : 2000;
    1220         while (($data = @fgetcsv($handle, $limit, $delimiter, $enclosure, $escape)) !== FALSE) {
     1220        while (($data = @fgetcsv( $handle, $limit, $delimiter, $enclosure )) !== FALSE) {
    12211221            $num = count($data);
    12221222            for ($c=0; $c < $num; $c++) {
  • easy-table/trunk/readme.txt

    r758921 r758957  
    55Requires at least: 3.0
    66Tested up to: 3.6
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2525* WYSIWYG safe, I mean you can switch HTML/View tab in WordPress editor without breaking the table data.
    2626
    27 = Known bugs =
     27= Known bugs and limitation =
    2828* Enclosure will not work on first cell of a row
    2929* Chinese characters (and others?) usually stripped down on first cell of a row
     30* Unable to create nested table
    3031
    3132= Example usage =
     
    248249== Changelog ==
    249250
     251= 1.3.1 =
     252* Fixed: Bug on version 1.3, fatal error on PHP prior to 5.3.0
     253
    250254= 1.3 =
    251255* Fixed: `escape` is now working, you can use escape to skip `delimiter`s (also `terminator`s if they're not \r or \n) using escape (default escape character is backslash)
Note: See TracChangeset for help on using the changeset viewer.