diff options
author | Christian Weiske <cweiske@cweiske.de> | 2010-10-09 10:18:52 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2010-10-09 10:18:52 +0200 |
commit | aaf293b18da42e41cfcaed16d13f1d25157fd7cb (patch) | |
tree | 478e6d7491d05a21e8169b5b9c9f96edbd56cf9c /data/templates | |
parent | be126cc958212ed74fe916eabcb1e6ac928df5e4 (diff) | |
download | semanticscuttle-aaf293b18da42e41cfcaed16d13f1d25157fd7cb.tar.gz semanticscuttle-aaf293b18da42e41cfcaed16d13f1d25157fd7cb.tar.bz2 |
make the bookmark page valid xhtml
Diffstat (limited to 'data/templates')
-rw-r--r-- | data/templates/bookmarks.tpl.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/data/templates/bookmarks.tpl.php b/data/templates/bookmarks.tpl.php index e32d3c9..29d7248 100644 --- a/data/templates/bookmarks.tpl.php +++ b/data/templates/bookmarks.tpl.php @@ -62,12 +62,16 @@ if($currenttag!= '' && $cdservice->getLastTagDescription($currenttag)) { } //common tag description edit -if($userservice->isLoggedOn()) { - if($currenttag!= '' && ($GLOBALS['enableCommonTagDescriptionEditedByAll'] || $currentUser->isAdmin())) { +if ($userservice->isLoggedOn()) { + if ($currenttag != '' + && ($GLOBALS['enableCommonTagDescriptionEditedByAll'] + || $currentUser->isAdmin() + ) + ) { echo ' <a href="'. createURL('tagcommondescriptionedit', $currenttag).'" title="'.T_('Edit the common description of this tag').'">'; echo !is_array($cDescription) || strlen($cDescription['cdDescription'])==0?T_('Edit the common description of this tag'):''; echo ' <img src="'.ROOT.'images/b_edit.png" /></a>'; - } elseif(isset($hash)) { + } else if (isset($hash)) { echo ' (<a href="'.createURL('bookmarkcommondescriptionedit', $hash).'" title="'.T_('Edit the common description of this bookmark').'">'; echo T_('Edit the common description of this bookmark').'</a>)'; } @@ -312,7 +316,7 @@ if ($currenttag!= '') { . $row['username'] . '</a>'; } - // Udders! + // others if (!isset($hash)) { $others = $otherCounts[$row['bAddress']]; $ostart = '<a href="' . createURL('history', $row['bHash']) . '">'; @@ -390,7 +394,7 @@ if ($currenttag!= '') { echo ' <div' . $adminBgClass . '>' . "\n"; echo ' <div class="link">' - . '<a href="'. $address .'"'. $rel .' class="taggedlink" target="_blank">' + . '<a href="'. htmlspecialchars($address) .'"'. $rel .' class="taggedlink">' . filter($row['bTitle']) . '</a>' . $adminStar . "</div>\n"; if ($row['bDescription'] == '') { |