diff options
Diffstat (limited to 'help/index.php')
-rw-r--r-- | help/index.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/help/index.php b/help/index.php index 426abe39560..f77972f58a7 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" ); @@ -17,6 +22,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(); ?> |