From: Morris Jobke Date: Sat, 17 Aug 2013 08:33:11 +0000 (+0200) Subject: fix difference between packaged version and master X-Git-Tag: v6.0.0alpha2~310^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=746d32eb059267799af8c5797850a6843e04d19f;p=nextcloud-server.git fix difference between packaged version and master --- diff --git a/core/doc/admin/index.html b/core/doc/admin/index.html new file mode 100644 index 00000000000..7785f2ce2f1 --- /dev/null +++ b/core/doc/admin/index.html @@ -0,0 +1,2 @@ +Here goes the admin documentation. +In the meantime go to ownCloud.org/support diff --git a/core/doc/admin/index.php b/core/doc/admin/index.php deleted file mode 100644 index 7785f2ce2f1..00000000000 --- a/core/doc/admin/index.php +++ /dev/null @@ -1,2 +0,0 @@ -Here goes the admin documentation. -In the meantime go to ownCloud.org/support diff --git a/core/doc/user/index.html b/core/doc/user/index.html new file mode 100644 index 00000000000..ede62f05aee --- /dev/null +++ b/core/doc/user/index.html @@ -0,0 +1,2 @@ +Here goes the user documentation +In the meantime go to ownCloud.org/support diff --git a/core/doc/user/index.php b/core/doc/user/index.php deleted file mode 100644 index ede62f05aee..00000000000 --- a/core/doc/user/index.php +++ /dev/null @@ -1,2 +0,0 @@ -Here goes the user documentation -In the meantime go to ownCloud.org/support diff --git a/settings/help.php b/settings/help.php index 713b23f7857..88693939b84 100644 --- a/settings/help.php +++ b/settings/help.php @@ -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=''; }