From: Christian Weiske Date: Sat, 21 Jan 2012 11:10:33 +0000 (+0100) Subject: subtitle was escaped too often in http://bm.bogo/bookmarks/userb/userb-tag X-Git-Tag: v0.98.4~3 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=01b91b22f3b990b788898ed3478d6b55aa3f85b3;p=semanticscuttle.git subtitle was escaped too often in http://bm.bogo/bookmarks/userb/userb-tag --- 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; } }