aboutsummaryrefslogtreecommitdiffstats
path: root/help/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'help/index.php')
-rw-r--r--help/index.php27
1 files changed, 0 insertions, 27 deletions
diff --git a/help/index.php b/help/index.php
deleted file mode 100644
index 7eb0c6b1820..00000000000
--- a/help/index.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-
-require_once('../lib/base.php');
-if( !OC_User::isLoggedIn()){
- header( "Location: ".OC_Helper::linkTo( "", "index.php" ));
- exit();
-}
-
-//hardcode for testing
-$pagecount=8;
-$page=2;
-
-
-// Load the files we need
-OC_Util::addStyle( "help", "help" );
-OC_App::setActiveNavigationEntry( "help" );
-
-$kbe=OC_OCSClient::getKnownledgebaseEntries();
-
-
-$tmpl = new OC_Template( "help", "index", "user" );
-$tmpl->assign( "kbe", $kbe );
-$tmpl->assign( "pagecount", $pagecount );
-$tmpl->assign( "page", $page );
-$tmpl->printPage();
-
-?>