summaryrefslogtreecommitdiffstats
path: root/help/index.php
diff options
context:
space:
mode:
authorJakob Sack <kde@jakobsack.de>2011-04-17 20:00:25 +0200
committerJakob Sack <kde@jakobsack.de>2011-04-17 20:00:25 +0200
commit21def39dacd2c452d401c7658b91c86087b5e8e1 (patch)
treeac0fcc8ccdd5974f4dfc134c5c91b1f49b4bbee2 /help/index.php
parentee3d32b023642b675b66f0e14fa5747bc5671f95 (diff)
parent91b5d8575a403877106e4cd048d90e0c117dae66 (diff)
downloadnextcloud-server-21def39dacd2c452d401c7658b91c86087b5e8e1.tar.gz
nextcloud-server-21def39dacd2c452d401c7658b91c86087b5e8e1.zip
Merge branch 'refactoring' of git://anongit.kde.org/owncloud into refactoring
Diffstat (limited to 'help/index.php')
-rw-r--r--help/index.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/help/index.php b/help/index.php
index e6a2d5661f5..de461c29412 100644
--- a/help/index.php
+++ b/help/index.php
@@ -7,6 +7,11 @@ if( !OC_USER::isLoggedIn()){
exit();
}
+//hardcode for testing
+$pagecount=8;
+$page=2;
+
+
// Load the files we need
OC_UTIL::addStyle( "help", "help" );
OC_APP::setActiveNavigationEntry( "help" );
@@ -16,6 +21,8 @@ $kbe=OC_OCSCLIENT::getKnownledgebaseEntries();
$tmpl = new OC_TEMPLATE( "help", "index", "admin" );
$tmpl->assign( "kbe", $kbe );
+$tmpl->assign( "pagecount", $pagecount );
+$tmpl->assign( "page", $page );
$tmpl->printPage();
?>