]> source.dussan.org Git - nextcloud-server.git/commitdiff
Update settings/help.php
authorThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:14:43 +0000 (12:14 +0300)
committerThomas Müller <thomas.mueller@tmit.eu>
Tue, 4 Sep 2012 09:14:43 +0000 (12:14 +0300)
respect coding style

settings/help.php

index b1dc1c5be771fa0c7e4e44a272a83754a8dcc0e6..9157308dd57cf81e3023bb6a3ecf5a45b56d580f 100644 (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);