Skip to content

Commit

Permalink
fix for category name escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
dweeves committed Apr 13, 2014
1 parent 207ee5c commit 6c4a54b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,8 +420,8 @@ public function processItemAfterId(&$item,$params=null)
}
//unset error if empty
unset($rootpaths["__error__"]);
//categories may have been changed
$catlist=explode(";;",$item["categories"]);
//categories may have been changed , use escaping
$catlist=explode(";;",$icats);
$catids=array();
foreach($catlist as $catdef)
{
Expand Down

0 comments on commit 6c4a54b

Please sign in to comment.