diff options
author | Frank Karlitschek <frank@dev.(none)> | 2010-03-30 01:33:23 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@dev.(none)> | 2010-03-30 01:33:23 +0200 |
commit | 45b4e4626e1a9cfd8088692cc74be65d97753021 (patch) | |
tree | 9ea9e19ce38a9811802a80afee5f15009eed5731 /inc | |
parent | 6602a61a38ab4bc29405c9e27b1c5ab62e457fb2 (diff) | |
parent | e658a0025895d5aecc2c067234c5120cc21a63a2 (diff) | |
download | nextcloud-server-45b4e4626e1a9cfd8088692cc74be65d97753021.tar.gz nextcloud-server-45b4e4626e1a9cfd8088692cc74be65d97753021.zip |
Merge commit 'refs/merge-requests/14' of git://gitorious.org/owncloud/owncloud
Diffstat (limited to 'inc')
-rwxr-xr-x | inc/lib_base.php | 2 | ||||
-rwxr-xr-x | inc/templates/header.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php index d7189d9c5b4..cfd0a90f77b 100755 --- a/inc/lib_base.php +++ b/inc/lib_base.php @@ -192,7 +192,7 @@ class OC_UTIL { public static function shownavigation(){ global $WEBROOT; global $SERVERROOT; - echo('<table cellpadding="5" cellspacing="0" border="0"><tr>'); + echo('<table class="center" cellpadding="5" cellspacing="0" border="0"><tr>'); echo('<td class="navigationitem1"><a href="'.$WEBROOT.'/">'.$_SESSION['username'].'</a></td>'); if($_SERVER['SCRIPT_NAME']==$WEBROOT.'/index.php') echo('<td class="navigationitemselected"><a href="'.$WEBROOT.'/">Files</a></td>'); else echo('<td class="navigationitem"><a href="'.$WEBROOT.'/">Files</a></td>'); diff --git a/inc/templates/header.php b/inc/templates/header.php index 2035aba538a..ec714684589 100755 --- a/inc/templates/header.php +++ b/inc/templates/header.php @@ -6,8 +6,8 @@ <base href="<?php echo($WEBROOT); ?>/"/> <link rel="stylesheet" type="text/css" href="css/default.php"/> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_ajax.js'></script> -<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/timer.js'></script> --> -<!-- <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/notification.js'></script> --> + <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_timer.js'></script> + <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_notification.js'></script> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_xmlloader.js'></script> <script type='text/ecmascript' src='<?php echo($WEBROOT)?>/js/lib_files.js'></script> <?php |