Plugin Directory

Changeset 1032600


Ignore:
Timestamp:
11/25/2014 05:15:49 PM (11 years ago)
Author:
osdwebdev
Message:

1.2 Release

Location:
osd-simple-table
Files:
4 added
3 edited

Legend:

Unmodified
Added
Removed
  • osd-simple-table/trunk/SimpleTable.php

    r909785 r1032600  
    7373        // Get end position of table, get the table substring, replace string with nothing
    7474        $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);       
    7676        $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("‘","’","“","”", "–", "′", "&#8243"), array("'", "'", "\"", "\"", "-", "'", "\""), $table);
    7780
    7881        // Get attributes on table tag
  • osd-simple-table/trunk/osd_simple_table.php

    r909788 r1032600  
    44Plugin URI: http://outsidesource.com
    55Description: A plugin that uses short tags to generate clean html tables on your wordpress site.
    6 Version: 1.1
     6Version: 1.2
    77Author: OSD Web Development Team
    88Author URI: http://outsidesource.com
  • osd-simple-table/trunk/readme.txt

    r1011400 r1032600  
    33Tags: tables, table, shortcode, easy table, table generator, simple table, html5
    44Requires at least: 3.4
    5 Tested up to: 4.0
    6 Stable tag: 1.1
     5Tested up to: 4.0.1
     6Stable tag: 1.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3232
    3333== Changelog ==
     34
     35= 1.2 =
     36* Fixed WordPress's formatting changes that broke attributes
    3437
    3538= 1.1 =
Note: See TracChangeset for help on using the changeset viewer.