diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:47:40 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:47:40 +0000 |
| commit | 07edace0d12965fe23f68838774286af0e4f95c3 (patch) | |
| tree | 43de8d121d7a6c3b2a007f1c2014981a38c34d52 /modules/mod_last_created_blogs.tpl | |
| parent | 844dc14c9e5faacab585e8d00681437c32f0293e (diff) | |
| download | blogs-07edace0d12965fe23f68838774286af0e4f95c3.tar.gz blogs-07edace0d12965fe23f68838774286af0e4f95c3.tar.bz2 blogs-07edace0d12965fe23f68838774286af0e4f95c3.zip | |
escape htmlspecialchars on output instead of during store process
Diffstat (limited to 'modules/mod_last_created_blogs.tpl')
| -rw-r--r-- | modules/mod_last_created_blogs.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mod_last_created_blogs.tpl b/modules/mod_last_created_blogs.tpl index 1af38d5..f9c60c4 100644 --- a/modules/mod_last_created_blogs.tpl +++ b/modules/mod_last_created_blogs.tpl @@ -1,4 +1,4 @@ -{* $Header: /cvsroot/bitweaver/_bit_blogs/modules/mod_last_created_blogs.tpl,v 1.5 2006/02/09 14:52:46 squareing Exp $ *} +{* $Header: /cvsroot/bitweaver/_bit_blogs/modules/mod_last_created_blogs.tpl,v 1.6 2006/03/25 20:47:39 squareing Exp $ *} {strip} {if $gBitSystem->isPackageActive( 'blogs' )} {if $nonums eq 'y'} @@ -9,7 +9,7 @@ {bitmodule title="$moduleTitle" name="last_created_blogs"} <ol class="blogs"> {section name=ix loop=$modLastCreatedBlogs} - <li><a href="{$modLastCreatedBlogs[ix].blog_url}">{$modLastCreatedBlogs[ix].title|default:"Blog `$modLastCreatedBlogs[ix].blog_id`"}</a></li> + <li><a href="{$modLastCreatedBlogs[ix].blog_url}">{$modLastCreatedBlogs[ix].title|escape|default:"Blog `$modLastCreatedBlogs[ix].blog_id`"}</a></li> {sectionelse} <li></li> {/section} |
