diff options
Diffstat (limited to 'templates/bookmarks.tpl.php')
-rw-r--r-- | templates/bookmarks.tpl.php | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 6a778bb..f7cc45b 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -43,17 +43,22 @@ if($logged_on_userid>0) { <?php -$userObject = $userservice->getUserByUsername($user); /* Private tag description */ -if(isset($currenttag) && strlen($user)>0 && $tagservice->getDescription($currenttag, $userObject['uId'])):?> +if(isset($currenttag) && isset($user)) { + $userObject = $userservice->getUserByUsername($user); + if($tagservice->getDescription($currenttag, $userObject['uId'])) { ?> + <p class="commondescription"> <?php - $description = $tagservice->getDescription($currenttag, $userObject['uId']); echo nl2br(filter($description['tDescription'])); ?> </p> -<?php endif ?> + +<?php + } +} +?> <?php if (count($bookmarks) > 0) { ?> <script type="text/javascript"> |