diff options
author | Frank Karlitschek <frank@dev.(none)> | 2010-04-06 15:18:04 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@dev.(none)> | 2010-04-06 15:18:04 +0200 |
commit | 6889c9b4f7719559dc20fa6669be44a293f3256f (patch) | |
tree | ed85715ef2cdb102663174bf553f1c41d9c904c8 /inc | |
parent | 93bc6273576b41f97ccc9bead2af0fdaa14fcc7c (diff) | |
parent | b4a12232bb5ebefb41d47c971c753cf8a3582be7 (diff) | |
download | nextcloud-server-6889c9b4f7719559dc20fa6669be44a293f3256f.tar.gz nextcloud-server-6889c9b4f7719559dc20fa6669be44a293f3256f.zip |
Merge commit 'refs/merge-requests/16' of git://gitorious.org/owncloud/owncloud
Diffstat (limited to 'inc')
-rwxr-xr-x | inc/lib_base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php index 539c33a40e4..ecc81a0454e 100755 --- a/inc/lib_base.php +++ b/inc/lib_base.php @@ -201,8 +201,8 @@ class OC_UTIL { if(dirname($_SERVER['SCRIPT_NAME'])==$WEBROOT.$NAVI['url']) echo('<td class="navigationitemselected"><a href="'.$WEBROOT.$NAVI['url'].'">'.$NAVI['name'].'</a></td>'); else echo('<td class="navigationitem"><a href="'.$WEBROOT.$NAVI['url'].'">'.$NAVI['name'].'</a></td>'); } - if($_SERVER['SCRIPT_NAME']==$WEBROOT.'/log/index.php') echo('<td class="navigationitemselected"><a href="log">Log</a></td>'); else echo('<td class="navigationitem"><a href="log">Log</a></td>'); - if($_SERVER['SCRIPT_NAME']==$WEBROOT.'/settings/index.php') echo('<td class="navigationitemselected"><a href="settings">Settings</a></td>'); else echo('<td class="navigationitem"><a href="settings">Settings</a></td>'); + if($_SERVER['SCRIPT_NAME']==$WEBROOT.'/log/index.php') echo('<td class="navigationitemselected"><a href="'.$WEBROOT.'/log">Log</a></td>'); else echo('<td class="navigationitem"><a href="'.$WEBROOT.'/log">Log</a></td>'); + if($_SERVER['SCRIPT_NAME']==$WEBROOT.'/settings/index.php') echo('<td class="navigationitemselected"><a href="'.$WEBROOT.'/settings">Settings</a></td>'); else echo('<td class="navigationitem"><a href="'.$WEBROOT.'/settings">Settings</a></td>'); echo('<td class="navigationitem"><a href="?logoutbutton=1">Logout</a></td>'); echo('</tr></table>'); } |