diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-08-19 19:01:19 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-08-19 19:01:19 +0200 |
commit | 4eedf216dca76b54cb960e52c2c81fc98267ab04 (patch) | |
tree | cddf4cf10faf719cf431e51a68e9e85d29300be7 | |
parent | 1b984c4e4e7d51541e0a448a7edb77a69bb1a3aa (diff) | |
download | semanticscuttle-4eedf216dca76b54cb960e52c2c81fc98267ab04.tar.gz semanticscuttle-4eedf216dca76b54cb960e52c2c81fc98267ab04.tar.bz2 |
Fix bug #3393951: Logo images missing on bookmark page
-rw-r--r-- | data/templates/default/bookmarks.tpl.php | 4 | ||||
-rw-r--r-- | doc/ChangeLog | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/data/templates/default/bookmarks.tpl.php b/data/templates/default/bookmarks.tpl.php index 70fe788..2a3d169 100644 --- a/data/templates/default/bookmarks.tpl.php +++ b/data/templates/default/bookmarks.tpl.php @@ -39,9 +39,9 @@ include('search.menu.php'); <?php if($GLOBALS['enableAdminColors']!=false && isset($userid) && $userservice->isAdmin($userid) && $pageName != PAGE_WATCHLIST) : ?> <div style="width:70%;text-align:center;"> - <img src="<?php $theme->resource('images/logo_24.gif'); ?>" width="12px"/> + <img src="<?php echo $theme->resource('images/logo_24.gif'); ?>" width="12px"/> <?php echo T_('Bookmarks on this page are managed by an admin user.'); ?> - <img src="<?php $theme->resource('images/logo_24.gif'); ?>" width="12px"/> + <img src="<?php echo $theme->resource('images/logo_24.gif'); ?>" width="12px"/> </div> <?php endif?> diff --git a/doc/ChangeLog b/doc/ChangeLog index 05a6405..0d3563c 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -7,6 +7,7 @@ ChangeLog for SemantiScuttle ------------------- - Fix bug: URLs were escaped too often in bookmark list - Fix bug: Subtitle was not escaped +- Fix bug #3393951: Logo images missing on bookmark page 0.98.3 - 2011-08-09 |