Plugin Directory

Changeset 1544913


Ignore:
Timestamp:
12/03/2016 01:33:14 AM (9 years ago)
Author:
whatadewitt
Message:

update to 2.0.4

Location:
deweys-twitter-card-helper
Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • deweys-twitter-card-helper/trunk/README.txt

    r1411015 r1544913  
    33Tags: social, twitter cards, twitter, sharing
    44Requires at least: 3.5.1
    5 Tested up to: 4.0
    6 Stable tag: 2.0.1
     5Tested up to: 4.5
     6Stable tag: 2.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4343== Changelog ==
    4444
     45= 2.0.4 =
     46* fixed the issue where apostrophes aren't always showing properly in shares
     47
    4548= 2.0.3 =
    4649* Small tweaks based on some feedback around custom data
  • deweys-twitter-card-helper/trunk/class-wad_twitter_cards.php

    r1411015 r1544913  
    2525   * @var     string
    2626   */
    27   protected $version = '2.0.3';
     27  protected $version = '2.0.4';
    2828
    2929  /**
     
    170170    //filter post tags
    171171    foreach ( $tags as $key => $value ) {
    172       echo("<meta name=\"twitter:" . $key . "\" content=\"" . htmlentities($value, ENT_QUOTES) . "\" />\n");
     172      echo("<meta name=\"twitter:" . $key . "\" content=\"" . htmlspecialchars($value, ENT_COMPAT, 'UTF-8', false) . "\" />\n");
    173173    }
    174174  }
  • deweys-twitter-card-helper/trunk/wad_twitter_cards.php

    r1411015 r1544913  
    1111 * Plugin URI:  http://www.whatadewitt.ca
    1212 * Description: Simplifies the use of Twitter Cards in WP
    13  * Version:     2.0.3
     13 * Version:     2.0.4
    1414 * Author:      Luke DeWitt
    1515 * Author URI:  http://www.whatadewitt.ca
Note: See TracChangeset for help on using the changeset viewer.