Thank you Christopher!
Here it is:
TS change:
wrap =
1.NO.allWrap= |***|*||*| |
PHP code:
function reverseRootline($content, $conf)
{
$str = explode('***', trim($content));
if(sizeof($str)>1)
{
$str = array_reverse($str);
$content = implode (' - ', $str);
}
return '<title>' . $content . '</title>';
}
Regards,
John