From c252de56d095d452f0a0b47e236b7ce5b478e785 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Tue, 4 Sep 2012 13:06:03 +0300 Subject: [PATCH] Update search/index.php respect coding style --- search/index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/search/index.php b/search/index.php index de55aec399..958065dc40 100644 --- a/search/index.php +++ b/search/index.php @@ -23,7 +23,7 @@ // Init owncloud -require_once('../lib/base.php'); +require_once '../lib/base.php'; // Check if we are a user OC_Util::checkLoggedIn(); @@ -32,7 +32,7 @@ OC_Util::checkLoggedIn(); OC_Util::addStyle( 'search', 'search' ); $query=(isset($_POST['query']))?$_POST['query']:''; -if($query){ +if($query) { $results=OC_Search::search($query); }else{ OC_Util::redirectToDefaultPage(); @@ -40,12 +40,12 @@ if($query){ $resultTypes=array(); foreach($results as $result){ - if(!isset($resultTypes[$result->type])){ + if(!isset($resultTypes[$result->type])) { $resultTypes[$result->type]=array(); } $resultTypes[$result->type][]=$result; } $tmpl = new OC_Template( 'search', 'index', 'user' ); -$tmpl->assign('resultTypes',$resultTypes); +$tmpl->assign('resultTypes', $resultTypes); $tmpl->printPage();