Changeset 1544913
- Timestamp:
- 12/03/2016 01:33:14 AM (9 years ago)
- Location:
- deweys-twitter-card-helper
- Files:
-
- 11 added
- 3 edited
-
tags/2.0.4 (added)
-
tags/2.0.4/LICENSE.txt (added)
-
tags/2.0.4/README.txt (added)
-
tags/2.0.4/class-wad_twitter_cards.php (added)
-
tags/2.0.4/css (added)
-
tags/2.0.4/css/admin.css (added)
-
tags/2.0.4/index.php (added)
-
tags/2.0.4/templates (added)
-
tags/2.0.4/templates/twittercardform.php (added)
-
tags/2.0.4/uninstall.php (added)
-
tags/2.0.4/wad_twitter_cards.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/class-wad_twitter_cards.php (modified) (2 diffs)
-
trunk/wad_twitter_cards.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
deweys-twitter-card-helper/trunk/README.txt
r1411015 r1544913 3 3 Tags: social, twitter cards, twitter, sharing 4 4 Requires at least: 3.5.1 5 Tested up to: 4. 06 Stable tag: 2.0. 15 Tested up to: 4.5 6 Stable tag: 2.0.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 2.0.4 = 46 * fixed the issue where apostrophes aren't always showing properly in shares 47 45 48 = 2.0.3 = 46 49 * Small tweaks based on some feedback around custom data -
deweys-twitter-card-helper/trunk/class-wad_twitter_cards.php
r1411015 r1544913 25 25 * @var string 26 26 */ 27 protected $version = '2.0. 3';27 protected $version = '2.0.4'; 28 28 29 29 /** … … 170 170 //filter post tags 171 171 foreach ( $tags as $key => $value ) { 172 echo("<meta name=\"twitter:" . $key . "\" content=\"" . html entities($value, ENT_QUOTES) . "\" />\n");172 echo("<meta name=\"twitter:" . $key . "\" content=\"" . htmlspecialchars($value, ENT_COMPAT, 'UTF-8', false) . "\" />\n"); 173 173 } 174 174 } -
deweys-twitter-card-helper/trunk/wad_twitter_cards.php
r1411015 r1544913 11 11 * Plugin URI: http://www.whatadewitt.ca 12 12 * Description: Simplifies the use of Twitter Cards in WP 13 * Version: 2.0. 313 * Version: 2.0.4 14 14 * Author: Luke DeWitt 15 15 * Author URI: http://www.whatadewitt.ca
Note: See TracChangeset
for help on using the changeset viewer.