diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 |
commit | 2756e3f85818346a478725b6dd94a966e0d92c07 (patch) | |
tree | efad4c6566773670dc5f9a8b733f2a3ed3fe4a57 /templates/bookmarks.tpl.php | |
parent | e273c0d367da161651324eca1b7e4177c670c91f (diff) | |
download | semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.gz semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.bz2 |
Bug fixes: correct minor bugs appearing with 'notice' level in PHP
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@122 b3834d28-1941-0410-a4f8-b48e95affb8f
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"> |