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-02-03 22:48:09 (GMT)
committer jbalogh@mozilla.com <jbalogh@mozilla.com@4eb1ac78-321c-0410-a911-ec516a8615a5>2009-02-03 22:48:09 (GMT)
commitef0acfaff6c6157b42db8e7efe8be0fbe16adc6d (patch)
treebcf46347707a6ca122ba33750264833209fae640
parent466a853d822a700a8c0f7eb22ff251572683d5e1 (diff)
bug 476725, removing expired login requirement for fyf.
git-svn-id: http://svn.mozilla.org/addons/trunk@21975 4eb1ac78-321c-0410-a911-ec516a8615a5
-rw-r--r--site/app/controllers/collections_controller.php8
1 files changed, 0 insertions, 8 deletions
diff --git a/site/app/controllers/collections_controller.php b/site/app/controllers/collections_controller.php
index 84b73e6..da80d85 100644
--- a/site/app/controllers/collections_controller.php
+++ b/site/app/controllers/collections_controller.php
@@ -51,14 +51,6 @@ class CollectionsController extends AppController
var $securityLevel = 'low';
function beforeFilter() {
- /* XXX login is required until this goes public. REMOVEME later */
- $fyf_time = gmmktime(15, 30, 00, 11, 18, 2008);
- if ($fyf_time > gmmktime()) { // not FYF promo time yet? => login
- $this->Amo->startup($this);
- $this->Amo->checkLoggedIn();
- }
- /* XXX end REMOVEME */
-
// Disable ACLs because this controller is entirely public.
$this->SimpleAuth->enabled = false;
$this->SimpleAcl->enabled = false;