Using 2.0.1.1, PHP 5.5.12
I have a problem with the link from a 'moreurl' for a news item. The front page of the site shows the summary with a link to 'Read more...' The link works okay, but the template name at the end of the link has non-escaped spaces.
Here is an example:
Code: Select all
https://thesite.org/news/6/1/Latest-news/d,News Detail.html
The template code that is producing the summary is as follows:
Code: Select all
<article class="news">
<h1>{$entry->title|cms_escape:htmlall}</h1>
{$entry->summary}
<p> <a href="{$entry->moreurl|cms_escape:htmlall}" class="button">Read More...</a></p>
</article>