summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorGravatar cweiske2009-10-01 22:22:00 +0000
committerGravatar cweiske2009-10-01 22:22:00 +0000
commit3725316ea33fe4ef7256c579dff1d4594bcd007c (patch)
tree6331346c8cc1a43fd26a912bd9022164120ff5df
parentedeb2bb4e52f0f1f76a7742bcf2f999d3f7c907f (diff)
downloadscuttle-3725316ea33fe4ef7256c579dff1d4594bcd007c.tar.gz
scuttle-3725316ea33fe4ef7256c579dff1d4594bcd007c.zip
re-add home link; requested by benjamin
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@383 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r--ChangeLog3
-rw-r--r--templates/toolbar.inc.php2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9b895ac..1b735ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,7 @@
ChangeLog for SemantiScuttle
============================
-0.94 - 2009-09-29
+0.94 - 2009-10-02
-----------------
- Fix bug #2834070: unfreed sql results
- Fix bug #2834077: .htaccess on virtual masshosted apaches
@@ -25,7 +25,6 @@ ChangeLog for SemantiScuttle
- Translation updates
- Updated German translation (de_DE), removed de_AT
- New configuration file system
-- Remove home link in menu bar
- Add INSTALL.txt and ChangeLog
diff --git a/templates/toolbar.inc.php b/templates/toolbar.inc.php
index a04b6a0..fa7170a 100644
--- a/templates/toolbar.inc.php
+++ b/templates/toolbar.inc.php
@@ -5,6 +5,7 @@ if ($userservice->isLoggedOn()) {
?>
<ul id="navigation">
+ <li><a href="<?php echo createURL(''); ?>"><?php echo T_('Home'); ?></a></li>
<li><a href="<?php echo createURL('bookmarks', $cUsername); ?>"><?php echo T_('Bookmarks'); ?></a></li>
<li><a href="<?php echo createURL('alltags', $cUsername); ?>"><?php echo T_('Tags'); ?></a></li>
<li><a href="<?php echo createURL('watchlist', $cUsername); ?>"><?php echo T_('Watchlist'); ?></a></li>
@@ -22,6 +23,7 @@ if ($userservice->isLoggedOn()) {
} else {
?>
<ul id="navigation">
+ <li><a href="<?php echo createURL(''); ?>"><?php echo T_('Home'); ?></a></li>
<li><a href="<?php echo createURL('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a></li>
<li><a href="<?php echo createURL('about'); ?>"><?php echo T_('About'); ?></a></li>
<li class="access"><a href="<?php echo createURL('login'); ?>"><?php echo T_('Log In'); ?></a></li>