diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-10 22:05:26 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-10 22:05:26 -0400 |
commit | 5c0b97013bea94cde9567569aec7702d73702026 (patch) | |
tree | be9be360ee1b50323a89d32793801e65307761d0 /controllers | |
parent | 0fd2ea3c67ce72be414f828cd2e7d65d8f9fb477 (diff) | |
download | otakuhub-5c0b97013bea94cde9567569aec7702d73702026.tar.xz |
Moved the secret to the proper controller
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/SignupController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/controllers/SignupController.php b/controllers/SignupController.php index 6a9538a..7cd2656 100644 --- a/controllers/SignupController.php +++ b/controllers/SignupController.php @@ -7,9 +7,9 @@ use li3_swiftmailer\mailer\Message; use app\models\User; use app\models\confirmKey; - class SignupController extends \lithium\action\Controller { public $publicActions = array('index','confirm', 'cancel' ); + public $secret = "marshmallows"; //I don't know why either? public function index() { $user = null; |