summaryrefslogtreecommitdiffstats
path: root/inc
diff options
context:
space:
mode:
authorRobin <robin@Amaya.(none)>2010-03-29 21:49:11 +0200
committerRobin <robin@Amaya.(none)>2010-03-29 21:49:11 +0200
commite658a0025895d5aecc2c067234c5120cc21a63a2 (patch)
treeeb3b7c0f6ec449e3ebb5c73bb511de4e89bb31ff /inc
parent5ac201dc834664989b04da9b28fc44bcd84874da (diff)
downloadnextcloud-server-e658a0025895d5aecc2c067234c5120cc21a63a2.tar.gz
nextcloud-server-e658a0025895d5aecc2c067234c5120cc21a63a2.zip
show file actions in a dropdown menu
Diffstat (limited to 'inc')
-rwxr-xr-xinc/lib_base.php2
-rwxr-xr-xinc/templates/header.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php
index f098e74c08e..0530fb0ce76 100755
--- a/inc/lib_base.php
+++ b/inc/lib_base.php
@@ -195,7 +195,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