From dc82d3f4b8c18521027a38a5c10ab705bca8371b Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Wed, 19 Jan 2011 20:55:37 +0100 Subject: [PATCH] =?utf8?q?Replace=20the=20=E2=80=9Cinsert=E2=80=9D=20filte?= =?utf8?q?r=20with=20the=20=E2=80=9Creplace=E2=80=9D=20filter.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- src/main/resources/templates/viewPost.html | 2 +- src/main/resources/templates/viewSone.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/resources/templates/viewPost.html b/src/main/resources/templates/viewPost.html index a61f858..836bf62 100644 --- a/src/main/resources/templates/viewPost.html +++ b/src/main/resources/templates/viewPost.html @@ -8,7 +8,7 @@

<%= Page.ViewPost.Text.UnknownPost|l10n|html>

<%else> -

<%= Page.ViewPost.Page.Title|l10n|insert needle="{sone}" key=post.sone.niceName|html>

+

<%= Page.ViewPost.Page.Title|l10n|replace needle="{sone}" replacementKey=post.sone.niceName|html>

<%include include/viewPost.html> <%/if> diff --git a/src/main/resources/templates/viewSone.html b/src/main/resources/templates/viewSone.html index a54c2cb..fac920b 100644 --- a/src/main/resources/templates/viewSone.html +++ b/src/main/resources/templates/viewSone.html @@ -7,7 +7,7 @@

<%= Page.ViewSone.Page.TitleWithoutSone|l10n|html>

-

<%= Page.ViewSone.NoSone.Description|l10n|insert needle="{sone}" key=sone.id|html>

+

<%= Page.ViewSone.NoSone.Description|l10n|replace needle="{sone}" replacementKey=sone.id|html>

<%elseifnull sone.name> @@ -47,7 +47,7 @@ <%/if> -

<%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html>

+

<%= Page.ViewSone.PostList.Title|l10n|replace needle="{sone}" replacementKey=sone.niceName|html>

<%:getpage parameter=postPage> -- 2.7.4