diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 15:41:02 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-08-29 15:41:02 -0700 |
commit | 0204617b602183a3e157bc7e23c617acd22a5212 (patch) | |
tree | 429a7f7ecd3eb9e7cc846bbf5a4f28601e09d22d /modules/rss | |
parent | c4d5ecde66c7bffde2259b9815c050e6a4d8f333 (diff) |
XSS fixes
Diffstat (limited to 'modules/rss')
-rw-r--r-- | modules/rss/views/rss_block.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/rss/views/rss_block.html.php b/modules/rss/views/rss_block.html.php index 39921d7d..cd8db89d 100644 --- a/modules/rss/views/rss_block.html.php +++ b/modules/rss/views/rss_block.html.php @@ -5,7 +5,7 @@ <span class="ui-icon-left"> <a href="<?= rss::url($url) ?>"> <span class="ui-icon ui-icon-signal-diag"></span> - <?= $title ?> + <?= SafeString::purify($title) ?> </a> </span> </li> |