Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjbalogh@mozilla.com <jbalogh@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-03-17 21:24:51 (GMT)
committer jbalogh@mozilla.com <jbalogh@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-03-17 21:24:51 (GMT)
commitbb680a574f4245e2e53f2739e65075276f5593a3 (patch)
tree5e900fc69a9dc33dc2f4d464d97d7cbc13b885af
parentcee6d741eed2e3e7cde6ccf939997bb3d208cbb4 (diff)
bug 483139, don't filter other-addons by status to the list stays consistent
git-svn-id: http://svn.mozilla.org/addons/trunk@23451 4eb1ac78-321c-0410-a911-ec516a8615a5
-rw-r--r--site/app/controllers/addons_controller.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/site/app/controllers/addons_controller.php b/site/app/controllers/addons_controller.php
index 96e666e..6c72a7b 100644
--- a/site/app/controllers/addons_controller.php
+++ b/site/app/controllers/addons_controller.php
@@ -221,7 +221,7 @@ class AddonsController extends AppController
$_addoncriteria = array(
'Addon.id' => $_addonids,
'Addon.inactive' => 0,
- 'Addon.status' => $this->status
+ 'Addon.status' => $valid_status
);
$authorAddons = $this->Addon->findAll($_addoncriteria, null, 'Translation.name');
} else {