-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
I get an error:
XML Parsing Error: not well-formed
Most likely due to an & symbol in the xml. It needs to be changed to an &?
I did this quick hack to get rid of my error:
Line 250 of the class file in the model folder.
$children = $child->get('children');
if ($this->config['parentTitles']) {
if ($this->config['parentTitlesReversed']) {
array_unshift($this->parentTitles, $child->get('pagetitle'));
} else {
$this->parentTitles[] = str_replace('&', '&',$child->get('pagetitle'));
}
$title = implode($this->config['titleSeparator'], $this->parentTitles);
} else {
$title = str_replace('&', '&',$child->get('pagetitle'));
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels