Changeset 758957
- Timestamp:
- 08/20/2013 05:25:24 AM (13 years ago)
- Location:
- easy-table/trunk
- Files:
-
- 2 edited
-
easy-table.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-table/trunk/easy-table.php
r758917 r758957 5 5 Description: Create table in post, page, or widget in easy way. 6 6 Author: Takien 7 Version: 1.3 7 Version: 1.3.1 8 8 Author URI: http://takien.com/ 9 9 */ … … 88 88 $easy_table_base = Array( 89 89 'name' => 'Easy Table', 90 'version' => '1.3 ',90 'version' => '1.3.1', 91 91 'plugin-domain' => 'easy-table' 92 92 ); … … 1218 1218 $option = get_option('easy_table_plugin_option'); 1219 1219 $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) { 1221 1221 $num = count($data); 1222 1222 for ($c=0; $c < $num; $c++) { -
easy-table/trunk/readme.txt
r758921 r758957 5 5 Requires at least: 3.0 6 6 Tested up to: 3.6 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 25 25 * WYSIWYG safe, I mean you can switch HTML/View tab in WordPress editor without breaking the table data. 26 26 27 = Known bugs =27 = Known bugs and limitation = 28 28 * Enclosure will not work on first cell of a row 29 29 * Chinese characters (and others?) usually stripped down on first cell of a row 30 * Unable to create nested table 30 31 31 32 = Example usage = … … 248 249 == Changelog == 249 250 251 = 1.3.1 = 252 * Fixed: Bug on version 1.3, fatal error on PHP prior to 5.3.0 253 250 254 = 1.3 = 251 255 * 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.