Changeset 1342774
- Timestamp:
- 02/04/2016 12:22:10 AM (10 years ago)
- Location:
- deweys-open-graph-helper
- Files:
-
- 11 added
- 2 edited
-
tags/2.0.2 (added)
-
tags/2.0.2/LICENSE.txt (added)
-
tags/2.0.2/README.txt (added)
-
tags/2.0.2/class-wad_open_graph.php (added)
-
tags/2.0.2/css (added)
-
tags/2.0.2/css/admin.css (added)
-
tags/2.0.2/index.php (added)
-
tags/2.0.2/templates (added)
-
tags/2.0.2/templates/ogform.php (added)
-
tags/2.0.2/uninstall.php (added)
-
tags/2.0.2/wad_open_graph.php (added)
-
trunk/README.txt (modified) (1 diff)
-
trunk/class-wad_open_graph.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
deweys-open-graph-helper/trunk/README.txt
r1320971 r1342774 39 39 == Changelog == 40 40 41 = 2.0.2 = 42 * Small changes to fix some issues with some of the og tag meta not being rendered properly 43 41 44 = 2.0.1 = 42 45 * Small changes to fix some issues with some of the og tag meta not being rendered properly -
deweys-open-graph-helper/trunk/class-wad_open_graph.php
r1320971 r1342774 25 25 * @var string 26 26 */ 27 protected $version = '2.0. 1';27 protected $version = '2.0.2'; 28 28 29 29 /** … … 184 184 //Loop through the tags and generate the open graph tags 185 185 foreach ( $tags as $key => $value ) { 186 echo("<meta property=\"og:" . $key . "\" content=\"" . html entities($value) . "\" />\n");186 echo("<meta property=\"og:" . $key . "\" content=\"" . html_entity_decode($value) . "\" />\n"); 187 187 } 188 188 }
Note: See TracChangeset
for help on using the changeset viewer.