From 44dd451dacc2f726155815210cf3bc03201cb72a Mon Sep 17 00:00:00 2001 From: "Johan \"Papa\" Cwiklinski" Date: Sun, 30 May 2010 23:21:38 +0200 Subject: Applying PEAR coding standards ; refs #48 --- all.php | 8 ++++---- zoom.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/all.php b/all.php index 32596d3..cfaa524 100644 --- a/all.php +++ b/all.php @@ -49,7 +49,7 @@ $smarty->assign('page_title', 'All packages in Fedora repositories'); /** * Retrieve packages informations * -* @param Object $db A reference to the database +* @param Object $db A reference to the database * * @return array */ @@ -61,8 +61,8 @@ function report ($db) $smarty->assign('repos', $repos); - if (substr($what,0,1)=='%') { - $sql=sprintf("SELECT DISTINCT name FROM rpm WHERE SUBSTRING(name,1,1)='%s' ORDER BY name", substr($what,1,1)); + if (substr($what, 0, 1)=='%') { + $sql=sprintf("SELECT DISTINCT name FROM rpm WHERE SUBSTRING(name,1,1)='%s' ORDER BY name", substr($what, 1, 1)); } else { $sql=sprintf("SELECT DISTINCT name FROM acls WHERE owner='%s' ORDER BY name", $what); } @@ -103,7 +103,7 @@ function report ($db) $package['owners'] = $owners; $versions = null; - foreach($repos as $repomain) { + foreach ($repos as $repomain) { $display=""; $class=""; foreach ($repomain as $repo) { diff --git a/zoom.php b/zoom.php index 0ea20cf..fdb340f 100644 --- a/zoom.php +++ b/zoom.php @@ -113,10 +113,10 @@ if ( !isset($name) || !$name ) { $owner = ($resown ? $resown->fetchObject() : false); if (isset($owner->name)) { - // Use exact name (with case) from acl (else pkgdb could fail) - $name = $owner->name; - $smarty->assign('name', $name); - $smarty->assign('page_title', 'Package: ' . $name); + // Use exact name (with case) from acl (else pkgdb could fail) + $name = $owner->name; + $smarty->assign('name', $name); + $smarty->assign('page_title', 'Package: ' . $name); } if (!$rpm) { -- cgit