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/bookmarks.php | |
| parent | 880b94498ab07edc0990af183c2491b89eefe066 (diff) | |
| download | semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.gz semanticscuttle-1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa.tar.bz2 | |
revise bugfix of unescaped subtitle
Diffstat (limited to 'www/bookmarks.php')
| -rw-r--r-- | www/bookmarks.php | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/www/bookmarks.php b/www/bookmarks.php index 72c063e..54daed2 100644 --- a/www/bookmarks.php +++ b/www/bookmarks.php @@ -303,7 +303,7 @@ if ($templatename == 'editbookmark.tpl') {  	$tplVars['nav_url'] = createURL('bookmarks', '%s/%s%s');  	if ($userservice->isLoggedOn() && $user == $currentUsername) {  		$tplVars['pagetitle'] = T_('My Bookmarks') . $catTitle; -		$tplVars['subtitle'] =  T_('My Bookmarks') . $catTitleWithUrls; +		$tplVars['subtitlehtml'] =  T_('My Bookmarks') . $catTitleWithUrls;  	} else {  		$tplVars['pagetitle'] = $user.': '.$cat;  		$tplVars['subtitle'] = $pagetitle; | 
