diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 23:17:04 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-15 23:17:04 +0000 |
commit | e20309315f1be64f93ceda2e02918bc6358eaca9 (patch) | |
tree | 36973dafbdc95b6959c172df0bbee6e677907a11 | |
parent | a22714b5ee84afe387d3a2671b787822461154b0 (diff) |
Correct error var in login
-rw-r--r-- | actions/login.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actions/login.php b/actions/login.php index cd337bd39..1044142a3 100644 --- a/actions/login.php +++ b/actions/login.php @@ -21,7 +21,8 @@ if (!defined('LACONICA')) { exit(1); } class LoginAction extends Action { - + var $error = null; + function isReadOnly() { return true; |