diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:55:09 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-03-25 20:55:09 +0000 |
| commit | 9b62be69d57bf8009e6d8a97b2f52d906a7aca24 (patch) | |
| tree | 23eda2af58b3816107ffe343a5d1484156920278 /templates/received_pages.tpl | |
| parent | 4df16dd9a837724b0bf516fa5b0927f2a1462187 (diff) | |
| download | wiki-9b62be69d57bf8009e6d8a97b2f52d906a7aca24.tar.gz wiki-9b62be69d57bf8009e6d8a97b2f52d906a7aca24.tar.bz2 wiki-9b62be69d57bf8009e6d8a97b2f52d906a7aca24.zip | |
escape htmlspecialchars on output instead of during store process
Diffstat (limited to 'templates/received_pages.tpl')
| -rw-r--r-- | templates/received_pages.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/received_pages.tpl b/templates/received_pages.tpl index 87e07ff..eab8310 100644 --- a/templates/received_pages.tpl +++ b/templates/received_pages.tpl @@ -59,9 +59,9 @@ <tr class="{cycle}"> <td>{$channels[user].received_page_id}</td> {if $channels[user].exists eq 'y'} -<td><span class="highlight">{$channels[user].title}</span></td> +<td><span class="highlight">{$channels[user].title|escape}</span></td> {else} -<td>{$channels[user].title}</td> +<td>{$channels[user].title|escape}</td> {/if} <td>{$channels[user].received_date|bit_short_date}</td> <td>{$channels[user].received_from_site}</td> |
