diff options
author | Frank Karlitschek <frank@dev.(none)> | 2010-03-24 08:51:59 +0100 |
---|---|---|
committer | Frank Karlitschek <frank@dev.(none)> | 2010-03-24 08:51:59 +0100 |
commit | 9816cd2bb8cceedb9beedd64901f6355db10b7e5 (patch) | |
tree | d22b302a7b0333cca9d7b06825ef1b957ee59939 /inc/templates | |
parent | b0d3a315aa235c4769bf452b9788e20d539654c9 (diff) | |
download | nextcloud-server-9816cd2bb8cceedb9beedd64901f6355db10b7e5.tar.gz nextcloud-server-9816cd2bb8cceedb9beedd64901f6355db10b7e5.zip |
small css and path fixes
Diffstat (limited to 'inc/templates')
-rwxr-xr-x | inc/templates/header.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/templates/header.php b/inc/templates/header.php index 6412b6a098a..0399a9c6544 100755 --- a/inc/templates/header.php +++ b/inc/templates/header.php @@ -3,12 +3,12 @@ <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>ownCloud</title> - <base href="/<?php echo($WEBROOT); ?>" /> + <base href="<?php echo($WEBROOT); ?>/" /> <link rel="stylesheet" type="text/css" href="css/default.php" /> </head> <body> <?php -echo('<h1><a id="owncloud-logo" href="/'.$WEBROOT.'"><span>ownCloud</span></a></h1>'); +echo('<h1><a id="owncloud-logo" href="'.$WEBROOT.'"><span>ownCloud</span></a></h1>'); // check if already configured. otherwise start configuration wizard |