Easy Table - Version 1.3.1

Version Description

  • Fixed: Bug on version 1.3, fatal error on PHP prior to 5.3.0
Download this release

Release Info

Developer takien
Plugin Icon wp plugin Easy Table
Version 1.3.1
Comparing to
See all releases

Code changes from version 1.3 to 1.3.1

Files changed (2) hide show
  1. easy-table.php +3 -3
  2. readme.txt +6 -2
easy-table.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Easy Table
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
- Version: 1.3
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -87,7 +87,7 @@ function __construct(){
87
  private function easy_table_base($return){
88
  $easy_table_base = Array(
89
  'name' => 'Easy Table',
90
- 'version' => '1.3',
91
  'plugin-domain' => 'easy-table'
92
  );
93
  return $easy_table_base[$return];
@@ -1217,7 +1217,7 @@ if (!function_exists('easy_table_str_getcsv')) {
1217
 
1218
  $option = get_option('easy_table_plugin_option');
1219
  $limit = !empty($option['limit']) ? (int)$option['limit'] : 2000;
1220
- while (($data = @fgetcsv($handle, $limit, $delimiter, $enclosure, $escape)) !== FALSE) {
1221
  $num = count($data);
1222
  for ($c=0; $c < $num; $c++) {
1223
  $line++;
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 1.3.1
8
  Author URI: http://takien.com/
9
  */
10
 
87
  private function easy_table_base($return){
88
  $easy_table_base = Array(
89
  'name' => 'Easy Table',
90
+ 'version' => '1.3.1',
91
  'plugin-domain' => 'easy-table'
92
  );
93
  return $easy_table_base[$return];
1217
 
1218
  $option = get_option('easy_table_plugin_option');
1219
  $limit = !empty($option['limit']) ? (int)$option['limit'] : 2000;
1220
+ while (($data = @fgetcsv( $handle, $limit, $delimiter, $enclosure )) !== FALSE) {
1221
  $num = count($data);
1222
  for ($c=0; $c < $num; $c++) {
1223
  $line++;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://takien.com/donate
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
- Stable tag: 1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -24,9 +24,10 @@ Easy Table using standard CSV format to generate table data, it's easiest way to
24
  * Fancy table design (using Twitter CSS bootstrap)
25
  * WYSIWYG safe, I mean you can switch HTML/View tab in WordPress editor without breaking the table data.
26
 
27
- = Known bugs =
28
  * Enclosure will not work on first cell of a row
29
  * Chinese characters (and others?) usually stripped down on first cell of a row
 
30
 
31
  = Example usage =
32
 
@@ -247,6 +248,9 @@ No
247
 
248
  == Changelog ==
249
 
 
 
 
250
  = 1.3 =
251
  * 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)
252
 
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.6
7
+ Stable tag: 1.3.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
24
  * Fancy table design (using Twitter CSS bootstrap)
25
  * WYSIWYG safe, I mean you can switch HTML/View tab in WordPress editor without breaking the table data.
26
 
27
+ = Known bugs and limitation =
28
  * Enclosure will not work on first cell of a row
29
  * Chinese characters (and others?) usually stripped down on first cell of a row
30
+ * Unable to create nested table
31
 
32
  = Example usage =
33
 
248
 
249
  == Changelog ==
250
 
251
+ = 1.3.1 =
252
+ * Fixed: Bug on version 1.3, fatal error on PHP prior to 5.3.0
253
+
254
  = 1.3 =
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)
256