summaryrefslogtreecommitdiffstats
path: root/all.php
diff options
context:
space:
mode:
authorJohan "Papa" Cwiklinski <trasher@odysseus.(none)>2010-05-30 23:21:38 +0200
committerJohan "Papa" Cwiklinski <trasher@odysseus.(none)>2010-05-30 23:21:38 +0200
commit44dd451dacc2f726155815210cf3bc03201cb72a (patch)
tree98fe4bf9d892438517d061f15f64a1c7edd7e161 /all.php
parent9400a0ef41ebcc433ddc5da4dea8673d691114a0 (diff)
Applying PEAR coding standards ; refs #48
Diffstat (limited to 'all.php')
-rw-r--r--all.php8
1 files changed, 4 insertions, 4 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) {