diff options
author | Christian Weiske <cweiske@cweiske.de> | 2012-01-21 12:10:33 +0100 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2012-01-21 12:23:05 +0100 |
commit | 01b91b22f3b990b788898ed3478d6b55aa3f85b3 (patch) | |
tree | 4bc3af8b1f4aef176217522460ae070639bb81df /www/bookmarks.php | |
parent | d6d44c6cfa7e3e5cdb36d9e4abd3a62edad74eb9 (diff) | |
download | semanticscuttle-01b91b22f3b990b788898ed3478d6b55aa3f85b3.tar.gz semanticscuttle-01b91b22f3b990b788898ed3478d6b55aa3f85b3.tar.bz2 |
subtitle was escaped too often in http://bm.bogo/bookmarks/userb/userb-tag
Diffstat (limited to 'www/bookmarks.php')
-rw-r--r-- | www/bookmarks.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/bookmarks.php b/www/bookmarks.php index 54daed2..fe12310 100644 --- a/www/bookmarks.php +++ b/www/bookmarks.php @@ -305,8 +305,8 @@ if ($templatename == 'editbookmark.tpl') { $tplVars['pagetitle'] = T_('My Bookmarks') . $catTitle; $tplVars['subtitlehtml'] = T_('My Bookmarks') . $catTitleWithUrls; } else { - $tplVars['pagetitle'] = $user.': '.$cat; - $tplVars['subtitle'] = $pagetitle; + $tplVars['pagetitle'] = $user.': '.$cat; + $tplVars['subtitlehtml'] = $user . $catTitleWithUrls; } } |