diff options
author | Michael Francis <edude03@gmail.com> | 2011-07-10 22:06:46 -0400 |
---|---|---|
committer | Michael Francis <edude03@gmail.com> | 2011-07-10 22:06:46 -0400 |
commit | 6891dc094d4b3ee8005db44823d4a27b2ffe1ec7 (patch) | |
tree | 995d48f08817b8f19a407a84489dd6c6b595a16d /controllers | |
parent | 812c0c1b7cce0572cc120e74eb61bbc4e8fe9d06 (diff) | |
download | otakuhub-6891dc094d4b3ee8005db44823d4a27b2ffe1ec7.tar.xz |
Spelling mistake
Diffstat (limited to 'controllers')
-rw-r--r-- | controllers/UsersController.php | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/controllers/UsersController.php b/controllers/UsersController.php index ab46fb7..23cad20 100644 --- a/controllers/UsersController.php +++ b/controllers/UsersController.php @@ -9,12 +9,11 @@ use app\models\ProfilePic; use app\models\Post; use lithium\security\Auth; use lithium\util\String; -use \MongoDate; use li3_flash_message\extensions\storage\FlashMessage; use lithium\template\helper\Html; class UsersController extends \lithium\action\Controller { - public $secret = "marshmellows"; //I don't know why either? + public $secret = "marshmallows"; //I don't know why either? //Make login a public action. public $publicActions = array('login', 'logout', 'signup', 'confirm'); @@ -33,7 +32,7 @@ class UsersController extends \lithium\action\Controller { * Of course, for logged in users, we need to do a multiselect I guess, something like find posts where access level is hidden * friends only, and public, ordered by date (descending) limit 20 or so (use pagination plugin) * - * Finally, there should be an an option to make all posts private, this can be done by the postlevel() method, it can check i + * Finally, there should be an an option to make all posts private, this can be done by the postlevel() method, it can check if * the user has the private option set, then if true return private for all posts :) */ |