From 4aaef1823e5e37f02bc18078ccb67217b8cdbcb7 Mon Sep 17 00:00:00 2001 From: mensonge Date: Tue, 3 Feb 2009 14:15:34 +0000 Subject: Interface fix: correct visual bug under IE git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@246 b3834d28-1941-0410-a4f8-b48e95affb8f --- templates/bookmarks.tpl.php | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) (limited to 'templates') diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 6203d33..182f65e 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -23,7 +23,7 @@ include('search.inc.php'); isAdmin($userid)): ?>
- +
@@ -196,16 +196,27 @@ if($currenttag!= '') { if ($GLOBALS['useredir']) { $address = $GLOBALS['url_redir'] . $address; } + + // Admin specific design + if($userservice->isAdmin($row['uId'])) { + $adminBgClass = 'class="adminBackground"'; + $adminStar = ' '; + } else { + $adminBgClass = ''; + $adminStar = ''; + } // Output - echo '
  • '."\n"; + echo '
  • '."\n"; if ($GLOBALS['enableWebsiteThumbnails']) { $thumbnailHash = md5($address.$GLOBALS['thumbnailsUserId'].$GLOBALS['thumbnailsKey']); - echo ' '; + //echo ''; + echo ''; } - echo '
    '; + + echo '
    ';; - echo '\n"; + echo '\n"; if ($row['bDescription'] == '') { $bkDescription = '-'; } else { -- cgit v1.2.3-54-g00ecf