Plugin Directory

Changeset 1342774


Ignore:
Timestamp:
02/04/2016 12:22:10 AM (10 years ago)
Author:
whatadewitt
Message:

version 2.0.2 updates/fixes

Location:
deweys-open-graph-helper
Files:
11 added
2 edited

Legend:

Unmodified
Added
Removed
  • deweys-open-graph-helper/trunk/README.txt

    r1320971 r1342774  
    3939== Changelog ==
    4040
     41= 2.0.2 =
     42* Small changes to fix some issues with some of the og tag meta not being rendered properly
     43
    4144= 2.0.1 =
    4245* 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  
    2525   * @var     string
    2626   */
    27   protected $version = '2.0.1';
     27  protected $version = '2.0.2';
    2828
    2929  /**
     
    184184    //Loop through the tags and generate the open graph tags
    185185    foreach ( $tags as $key => $value ) {
    186       echo("<meta property=\"og:" . $key . "\" content=\"" . htmlentities($value) . "\" />\n");
     186      echo("<meta property=\"og:" . $key . "\" content=\"" . html_entity_decode($value) . "\" />\n");
    187187    }
    188188  }
Note: See TracChangeset for help on using the changeset viewer.