2012-02-15, 00:36:58
Quote:However, I now have a related problem, in that the html doesn't validate with &post in the url. Once again I've spent a long time trying to figure out a way to get & in there instead but my php knowledge is very limited and I'm going round in circles.
If it helps anyone for future reference, I managed to solve the validation problem by adding this line to the nm_get_url function:
Code:
$url = str_replace('&', '&', $url);
return $url;
Still can't solve the fancy urls for news manager, but at least my site validates.
Kate