diff options
author | zach <zach@controlyourself.ca> | 2008-10-05 14:38:50 -0400 |
---|---|---|
committer | zach <zach@controlyourself.ca> | 2008-10-05 14:38:50 -0400 |
commit | 738d50a631a494ba849188fd5095c6bec8f66ff5 (patch) | |
tree | 8dba03fc2c98048a1e95c92aefd6b0618a03e431 /actions | |
parent | 2c2821799dcc767f059287af5fb740783a78819f (diff) |
Added OnCommand and OffCommand to the list of cmds the Twitter API
supports thru statuses/update
darcs-hash:20081005183850-462f3-1fcbf873c14f1048ba7c3ac23f6cd394066170c7.gz
Diffstat (limited to 'actions')
-rw-r--r-- | actions/twitapistatuses.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index 9865111d7..53c5f1326 100644 --- a/actions/twitapistatuses.php +++ b/actions/twitapistatuses.php @@ -702,7 +702,7 @@ class TwitapistatusesAction extends TwitterapiAction { function supported($cmd) { - $cmdlist = array('MessageCommand', 'SubCommand', 'UnsubCommand', 'FavCommand'); + $cmdlist = array('MessageCommand', 'SubCommand', 'UnsubCommand', 'FavCommand', 'OnCommand', 'OffCommand'); if (in_array(get_class($cmd), $cmdlist)) { return true; |