Easy Table - Version 0.6.1

Version Description

  • Fixed: Accidentally add unused character to the table
Download this release

Release Info

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

Code changes from version 0.6 to 0.6.1

Files changed (2) hide show
  1. easy-table.php +3 -3
  2. readme.txt +5 -1
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: 0.6
8
  Author URI: http://takien.com/
9
  */
10
 
@@ -85,7 +85,7 @@ function __construct(){
85
  private function easy_table_base($return){
86
  $easy_table_base = Array(
87
  'name' => 'Easy Table',
88
- 'version' => '0.6',
89
  'plugin-domain' => 'easy-table'
90
  );
91
  return $easy_table_base[$return];
@@ -158,7 +158,7 @@ private function csv_to_table($data,$args){
158
  } else {
159
  $width = (int)$width.'px';
160
  }
161
- $output .= $width.'<table '.($id ? 'id="'.$id.'"':'').' style="width:'.$width.';'.(($align=='center') ? 'margin-left:auto;margin-right:auto' : '').'" width="'.(int)$width.'" align="'.$align.'" class="table clearfix '.($tablesorter ? 'tablesorter ':'').$class.'" '.(($border !=='0') ? 'border="'.$border.'"' : '').'>'."\n";
162
  $output .= $caption ? '<caption>'.$caption.'</caption>'."\n" : '';
163
  $output .= $th ? '<thead>' : (($tf !== 'last') ? '' : '<tbody>');
164
  $output .= (!$th AND !$tf) ? '<tbody>':'';
4
  Plugin URI: http://takien.com/
5
  Description: Create table in post, page, or widget in easy way.
6
  Author: Takien
7
+ Version: 0.6.1
8
  Author URI: http://takien.com/
9
  */
10
 
85
  private function easy_table_base($return){
86
  $easy_table_base = Array(
87
  'name' => 'Easy Table',
88
+ 'version' => '0.6.1',
89
  'plugin-domain' => 'easy-table'
90
  );
91
  return $easy_table_base[$return];
158
  } else {
159
  $width = (int)$width.'px';
160
  }
161
+ $output = '<table '.($id ? 'id="'.$id.'"':'').' style="width:'.$width.';'.(($align=='center') ? 'margin-left:auto;margin-right:auto' : '').'" width="'.(int)$width.'" align="'.$align.'" class="table clearfix '.($tablesorter ? 'tablesorter ':'').$class.'" '.(($border !=='0') ? 'border="'.$border.'"' : '').'>'."\n";
162
  $output .= $caption ? '<caption>'.$caption.'</caption>'."\n" : '';
163
  $output .= $th ? '<thead>' : (($tf !== 'last') ? '' : '<tbody>');
164
  $output .= (!$th AND !$tf) ? '<tbody>':'';
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.3.2
7
- Stable tag: 0.6
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -92,6 +92,10 @@ No
92
 
93
  == Changelog ==
94
 
 
 
 
 
95
  = 0.6 =
96
  * Fixed: Missing tbody opening tag on some condition
97
  * Fixed: Duplicate unit of width attribute
4
  Tags: table,csv,csv-to-table,post,excel,csv file,widget,tablesorter
5
  Requires at least: 3.0
6
  Tested up to: 3.3.2
7
+ Stable tag: 0.6.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
92
 
93
  == Changelog ==
94
 
95
+ = 0.6.1 =
96
+
97
+ * Fixed: Accidentally add unused character to the table
98
+
99
  = 0.6 =
100
  * Fixed: Missing tbody opening tag on some condition
101
  * Fixed: Duplicate unit of width attribute