Author: earle Date: 2005-10-05 03:39:57 +0100 (Wed, 05 Oct 2005) New Revision: 675
Modified: trunk/Changes trunk/templates/node.tt Log: Replace underscores in node names in redirection message with spaces.
Modified: trunk/Changes =================================================================== --- trunk/Changes 2005-10-02 18:37:40 UTC (rev 674) +++ trunk/Changes 2005-10-05 02:39:57 UTC (rev 675) @@ -1,3 +1,6 @@ +0.51 + Replace underscores in node names in redirection message with spaces. + 0.50 2 October 2005 Remove rogue ampersand that had crept into the RSS feed.
Modified: trunk/templates/node.tt =================================================================== --- trunk/templates/node.tt 2005-10-02 18:37:40 UTC (rev 674) +++ trunk/templates/node.tt 2005-10-05 02:39:57 UTC (rev 675) @@ -5,7 +5,7 @@ [% INCLUDE navbar.tt %] <div id="maincontent"> [% IF oldid %] -<div id="redirect_message">(redirected from <a href="[% full_cgi_url %]?action=edit&id=[% oldid %]">[% oldid %]</a></div> +<div id="redirect_message">(redirected from <a href="[% full_cgi_url %]?action=edit&id=[% oldid %]">[% oldid.replace('_', ' ') %]</a></div> [% END %]
[% IF current %]
openguides-commits@lists.openguides.org