2012-01-17, 03:50:23
Mike,
It's not that important (not an usual thing), but still if there's a backslash (\) in the menu title, it will be rendered twice (\\.)
So another line should be added there:
Another way, if you prefer this instead, could be putting both calls to stripslashes in line 613, changing:
to:
It's not that important (not an usual thing), but still if there's a backslash (\) in the menu title, it will be rendered twice (\\.)
So another line should be added there:
Code:
$page['menu'] = stripslashes($page['menu']);
Another way, if you prefer this instead, could be putting both calls to stripslashes in line 613, changing:
Code:
$page['title'] .'">'.$page['menu'].
Code:
stripslashes($page['title']) .'">'.stripslashes($page['menu']).