re-add home link; requested by benjamin

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@383 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
cweiske 2009-10-01 22:22:00 +00:00
parent edeb2bb4e5
commit 3725316ea3
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
ChangeLog for SemantiScuttle ChangeLog for SemantiScuttle
============================ ============================
0.94 - 2009-09-29 0.94 - 2009-10-02
----------------- -----------------
- Fix bug #2834070: unfreed sql results - Fix bug #2834070: unfreed sql results
- Fix bug #2834077: .htaccess on virtual masshosted apaches - Fix bug #2834077: .htaccess on virtual masshosted apaches
@ -25,7 +25,6 @@ ChangeLog for SemantiScuttle
- Translation updates - Translation updates
- Updated German translation (de_DE), removed de_AT - Updated German translation (de_DE), removed de_AT
- New configuration file system - New configuration file system
- Remove home link in menu bar
- Add INSTALL.txt and ChangeLog - Add INSTALL.txt and ChangeLog

View File

@ -5,6 +5,7 @@ if ($userservice->isLoggedOn()) {
?> ?>
<ul id="navigation"> <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('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('alltags', $cUsername); ?>"><?php echo T_('Tags'); ?></a></li>
<li><a href="<?php echo createURL('watchlist', $cUsername); ?>"><?php echo T_('Watchlist'); ?></a></li> <li><a href="<?php echo createURL('watchlist', $cUsername); ?>"><?php echo T_('Watchlist'); ?></a></li>
@ -22,6 +23,7 @@ if ($userservice->isLoggedOn()) {
} else { } else {
?> ?>
<ul id="navigation"> <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('populartags'); ?>"><?php echo T_('Popular Tags'); ?></a></li>
<li><a href="<?php echo createURL('about'); ?>"><?php echo T_('About'); ?></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> <li class="access"><a href="<?php echo createURL('login'); ?>"><?php echo T_('Log In'); ?></a></li>