diff options
author | Brenda Wallace <shiny@cpan.org> | 2009-12-08 23:45:54 +0000 |
---|---|---|
committer | Brenda Wallace <shiny@cpan.org> | 2009-12-08 23:45:54 +0000 |
commit | a5c11cc92a277c3af6f9b18b1ffaf6dc5f90f5cc (patch) | |
tree | 3d045ddb4d64471c07b48c1e7e40ca4fc061b764 /lib/commandinterpreter.php | |
parent | ce46cce73ef8e1c60888755586919afdf9afee14 (diff) | |
parent | 21757186e9a7ffd2e3330fd4ef61ffeb2dc0229b (diff) |
Merge commit 'origin/0.9.x' into 0.9.x
Diffstat (limited to 'lib/commandinterpreter.php')
-rw-r--r-- | lib/commandinterpreter.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/commandinterpreter.php b/lib/commandinterpreter.php index 25f2e4b3e..665015afc 100644 --- a/lib/commandinterpreter.php +++ b/lib/commandinterpreter.php @@ -41,6 +41,12 @@ class CommandInterpreter return null; } return new HelpCommand($user); + case 'login': + if ($arg) { + return null; + } else { + return new LoginCommand($user); + } case 'subscribers': if ($arg) { return null; |