diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:54:40 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:54:40 +0000 |
| commit | 95d6ef9df29f91b08a7f449845837c772072afca (patch) | |
| tree | cdadc1aef611897165603f770dc41a4cf4bc3150 /templates | |
| parent | 66b3920f7d26396e646210464ec022f1eee56c26 (diff) | |
| download | users-95d6ef9df29f91b08a7f449845837c772072afca.tar.gz users-95d6ef9df29f91b08a7f449845837c772072afca.tar.bz2 users-95d6ef9df29f91b08a7f449845837c772072afca.zip | |
escape htmlspecialchars on output instead of during store process
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/center_user_wiki_page.tpl | 2 | ||||
| -rw-r--r-- | templates/user_watches.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/center_user_wiki_page.tpl b/templates/center_user_wiki_page.tpl index 0e37115..e3616de 100644 --- a/templates/center_user_wiki_page.tpl +++ b/templates/center_user_wiki_page.tpl @@ -62,7 +62,7 @@ {jstabs} {jstab title="User Page"} <div class="header"> - <h1>{$userInfo.title}</h1> + <h1>{$userInfo.title|escape}</h1> </div> <div class="body"> diff --git a/templates/user_watches.tpl b/templates/user_watches.tpl index 7f66c5f..befeffc 100644 --- a/templates/user_watches.tpl +++ b/templates/user_watches.tpl @@ -36,7 +36,7 @@ <tr class="{cycle values="odd,even"}"> <td><label><input type="checkbox" name="watch[{$watches[ix].hash}]" /> {$watches[ix].event}</label></td> <td>{$watches[ix].type}</td> - <td><a href="{$watches[ix].url}">{$watches[ix].title}</a></td> + <td><a href="{$watches[ix].url}">{$watches[ix].title|escape}</a></td> </tr> {sectionelse} <tr> |
