Changeset 1032600
- Timestamp:
- 11/25/2014 05:15:49 PM (11 years ago)
- Location:
- osd-simple-table
- Files:
-
- 4 added
- 3 edited
-
tags/1.2 (added)
-
tags/1.2/SimpleTable.php (added)
-
tags/1.2/osd_simple_table.php (added)
-
tags/1.2/readme.txt (added)
-
trunk/SimpleTable.php (modified) (1 diff)
-
trunk/osd_simple_table.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
osd-simple-table/trunk/SimpleTable.php
r909785 r1032600 73 73 // Get end position of table, get the table substring, replace string with nothing 74 74 $table_pos_end = strpos($this->string, self::END_TABLE, $this->table_pos_start + 1) + strlen(self::END_TABLE); 75 $table = substr($this->string, $this->table_pos_start, $table_pos_end - $this->table_pos_start); 75 $table = substr($this->string, $this->table_pos_start, $table_pos_end - $this->table_pos_start); 76 76 $this->string = substr_replace($this->string, "", $this->table_pos_start, $table_pos_end - $this->table_pos_start); 77 78 // Replace WordPress's texturized special characters (quotes, apostrophes, primes, .etc) 79 $table = str_replace(array("‘","’","“","”", "–", "′", "″"), array("'", "'", "\"", "\"", "-", "'", "\""), $table); 77 80 78 81 // Get attributes on table tag -
osd-simple-table/trunk/osd_simple_table.php
r909788 r1032600 4 4 Plugin URI: http://outsidesource.com 5 5 Description: A plugin that uses short tags to generate clean html tables on your wordpress site. 6 Version: 1. 16 Version: 1.2 7 7 Author: OSD Web Development Team 8 8 Author URI: http://outsidesource.com -
osd-simple-table/trunk/readme.txt
r1011400 r1032600 3 3 Tags: tables, table, shortcode, easy table, table generator, simple table, html5 4 4 Requires at least: 3.4 5 Tested up to: 4.0 6 Stable tag: 1. 15 Tested up to: 4.0.1 6 Stable tag: 1.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 32 32 33 33 == Changelog == 34 35 = 1.2 = 36 * Fixed WordPress's formatting changes that broke attributes 34 37 35 38 = 1.1 =
Note: See TracChangeset
for help on using the changeset viewer.