diff options
author | Frank Karlitschek <karlitschek@kde.org> | 2011-04-17 19:46:09 +0200 |
---|---|---|
committer | Frank Karlitschek <karlitschek@kde.org> | 2011-04-17 19:46:09 +0200 |
commit | 91b5d8575a403877106e4cd048d90e0c117dae66 (patch) | |
tree | 14d925684eecb0ce4b30c270fe171e643cb638f4 /help/templates | |
parent | 47223ae2d98cf74101fd42a49d388ba48d01f80e (diff) | |
download | nextcloud-server-91b5d8575a403877106e4cd048d90e0c117dae66.tar.gz nextcloud-server-91b5d8575a403877106e4cd048d90e0c117dae66.zip |
add pager function to the base lib and remove the default table width
Diffstat (limited to 'help/templates')
-rw-r--r-- | help/templates/index.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/help/templates/index.php b/help/templates/index.php index b8444c556e9..262ab3d8cab 100644 --- a/help/templates/index.php +++ b/help/templates/index.php @@ -1,7 +1,7 @@ <h1>Questions and Answers</h1> -<table cellspacing="0"> +<table cellspacing="0" width="100%"> <tbody> <?php foreach($_["kbe"] as $kb): ?> <tr> @@ -13,6 +13,10 @@ <?php endforeach; ?> </tbody> </table> +<?php + $url=OC_HELPER::linkTo( "help", "index.php" ).'?page='; + OC_UTIL::showPageNavi($_['pagecount'],$_['page'],$url); +?> <a target="_blank" class="prettybutton" href="http://apps.owncloud.com/knowledgebase/editquestion.php?action=new">ASK A QUESTION</a> |