]> source.dussan.org Git - nextcloud-server.git/commitdiff
fix difference between packaged version and master
authorMorris Jobke <morris.jobke@gmail.com>
Sat, 17 Aug 2013 08:33:11 +0000 (10:33 +0200)
committerMorris Jobke <morris.jobke@gmail.com>
Sat, 17 Aug 2013 08:33:11 +0000 (10:33 +0200)
core/doc/admin/index.html [new file with mode: 0644]
core/doc/admin/index.php [deleted file]
core/doc/user/index.html [new file with mode: 0644]
core/doc/user/index.php [deleted file]
settings/help.php

diff --git a/core/doc/admin/index.html b/core/doc/admin/index.html
new file mode 100644 (file)
index 0000000..7785f2c
--- /dev/null
@@ -0,0 +1,2 @@
+Here goes the admin documentation.
+In the meantime go to <a href="http://owncloud.org/support/" target="_blank">ownCloud.org/support</a>
diff --git a/core/doc/admin/index.php b/core/doc/admin/index.php
deleted file mode 100644 (file)
index 7785f2c..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Here goes the admin documentation.
-In the meantime go to <a href="http://owncloud.org/support/" target="_blank">ownCloud.org/support</a>
diff --git a/core/doc/user/index.html b/core/doc/user/index.html
new file mode 100644 (file)
index 0000000..ede62f0
--- /dev/null
@@ -0,0 +1,2 @@
+Here goes the user documentation
+In the meantime go to <a href="http://owncloud.org/support/" target="_blank">ownCloud.org/support</a>
diff --git a/core/doc/user/index.php b/core/doc/user/index.php
deleted file mode 100644 (file)
index ede62f0..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-Here goes the user documentation
-In the meantime go to <a href="http://owncloud.org/support/" target="_blank">ownCloud.org/support</a>
index 713b23f78570883bfa3e086c907805ff28535f92..88693939b848375bea86c54265f797487f36de78 100644 (file)
@@ -14,11 +14,11 @@ OC_App::setActiveNavigationEntry( "help" );
 
 
 if(isset($_GET['mode']) and $_GET['mode'] === 'admin') {
-       $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin' );
+       $url=OC_Helper::linkToAbsolute( 'core', 'doc/admin/index.html' );
        $style1='';
        $style2=' pressed';
 }else{
-       $url=OC_Helper::linkToAbsolute( 'core', 'doc/user' );
+       $url=OC_Helper::linkToAbsolute( 'core', 'doc/user/index.html' );
        $style1=' pressed';
        $style2='';
 }