diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-08-18 16:18:28 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-08-18 16:18:28 +0200 |
commit | 1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa (patch) | |
tree | d3e86bace18e2a4c19c22359762231e19c37ce4c /www/tags.php | |
parent | 880b94498ab07edc0990af183c2491b89eefe066 (diff) | |
download | semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.gz semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.bz2 |
revise bugfix of unescaped subtitle
Diffstat (limited to 'www/tags.php')
-rw-r--r-- | www/tags.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/tags.php b/www/tags.php index 127f6c5..c56b97f 100644 --- a/www/tags.php +++ b/www/tags.php @@ -107,7 +107,7 @@ $tplVars['start'] = $start; $tplVars['popCount'] = 25; $tplVars['currenttag'] = $cat; $tplVars['sidebar_blocks'] = array('linked', 'related', 'menu2');//array('linked', 'related', 'popular'); -$tplVars['subtitle'] = $pagetitle; +$tplVars['subtitlehtml'] = $pagetitle; $tplVars['bookmarkCount'] = $start + 1; $bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, NULL, $cat, NULL, getSortOrder()); $tplVars['total'] = $bookmarks['total']; |