Update settings/help.php

respect coding style
This commit is contained in:
Thomas Müller 2012-09-04 12:14:43 +03:00
parent cfd62d422b
commit 0fe0bd86b8
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
* See the COPYING-README file.
*/
require_once('../lib/base.php');
require_once '../lib/base.php';
OC_Util::checkLoggedIn();
@ -15,7 +15,7 @@ OC_App::setActiveNavigationEntry( "help" );
$pagesize=7;
if(isset($_GET['page'])) $page=$_GET['page']; else $page=0;
$kbe=OC_OCSClient::getKnownledgebaseEntries($page,$pagesize);
$kbe=OC_OCSClient::getKnownledgebaseEntries($page, $pagesize);
$totalitems=$kbe['totalitems'];
unset($kbe['totalitems']);
$pagecount=ceil($totalitems/$pagesize);