Skip to content

Commit a7b4b7d

Browse files
committed
adding an html entity decode because json/yaml not liking the quotes
1 parent 82e55f9 commit a7b4b7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PatternLab/PatternData/Helpers/LineageHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function __construct($options = array()) {
2626

2727
parent::__construct($options);
2828

29-
$this->lineageMatch = Config::getOption("lineageMatch");
29+
$this->lineageMatch = html_entity_decode(Config::getOption("lineageMatch"),ENT_QUOTES);
3030
$this->lineageMatchKey = Config::getOption("lineageMatchKey");
3131

3232
}

0 commit comments

Comments
 (0)