From ea6a7cef79f5e1145d1b2d10fe3775fe5523f873 Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Fri, 7 Jan 2011 20:52:34 +0000 Subject: [PATCH] footer.tpl: remove escaping of $CONF[footer_link] url-escaping $CONF[footer_link] makes the link look like "http%3A%2F%2Fexample.com". Browsers interpret this as file name relative to the current domain and directory, not as full http://example.com URL. Removed escaping. Thanks to jan-kruis @SF for pointing this out. https://sourceforge.net/tracker/?func=detail&aid=3153035&group_id=191583&atid=937964 git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@940 a1433add-5e2c-0410-b055-b7f2511e0802 --- templates/footer.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/footer.tpl b/templates/footer.tpl index f79c2453..9cac6fe3 100644 --- a/templates/footer.tpl +++ b/templates/footer.tpl @@ -10,8 +10,8 @@ {$PALANG.check_update} {if $CONF.show_footer_text == 'YES' && $CONF.footer_link}    |    - {$CONF.footer_text|escape} + {$CONF.footer_text|escape} {/if} - \ No newline at end of file +