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:10:33 +0100 | 
| commit | 335d6563b7f55f30e22bb74b4af6f0aea7ac0d27 (patch) | |
| tree | f715154b2ace408417ae04a17c5ca65af3d4ca71 /www | |
| parent | 6ff4370a20e7da8d02239b387cc0db296d7bf466 (diff) | |
| download | semanticscuttle-335d6563b7f55f30e22bb74b4af6f0aea7ac0d27.tar.gz semanticscuttle-335d6563b7f55f30e22bb74b4af6f0aea7ac0d27.tar.bz2 | |
subtitle was escaped too often in http://bm.bogo/bookmarks/userb/userb-tag
Diffstat (limited to 'www')
| -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;  	}  } | 
