diff options
author | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-09-20 17:11:38 +0000 |
---|---|---|
committer | cweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-09-20 17:11:38 +0000 |
commit | 423147a7d21b1a7938496c7ee69797ea6b871434 (patch) | |
tree | 3f63309cc9eb7ce139e8fdf671704da7437875fe /templates/bookmarks.tpl.php | |
parent | 2b98bf899610a9f2b3bb16c1e8a511517df322fd (diff) | |
download | semanticscuttle-423147a7d21b1a7938496c7ee69797ea6b871434.tar.gz semanticscuttle-423147a7d21b1a7938496c7ee69797ea6b871434.tar.bz2 |
hide welcome message if it is empty
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@360 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'templates/bookmarks.tpl.php')
-rw-r--r-- | templates/bookmarks.tpl.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/bookmarks.tpl.php b/templates/bookmarks.tpl.php index 3cd3953..e27bc3e 100644 --- a/templates/bookmarks.tpl.php +++ b/templates/bookmarks.tpl.php @@ -16,7 +16,7 @@ $this->includeTemplate($GLOBALS['top_include']); include('search.inc.php'); ?> -<?php if($pageName == PAGE_INDEX):?> +<?php if($pageName == PAGE_INDEX && $GLOBALS['welcomeMessage']):?> <p id="welcome"><?php echo $GLOBALS['welcomeMessage'];?></p> <?php endif?> |