summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzach <zach@controlyourself.ca>2008-10-05 14:38:50 -0400
committerzach <zach@controlyourself.ca>2008-10-05 14:38:50 -0400
commit738d50a631a494ba849188fd5095c6bec8f66ff5 (patch)
tree8dba03fc2c98048a1e95c92aefd6b0618a03e431
parent2c2821799dcc767f059287af5fb740783a78819f (diff)
Added OnCommand and OffCommand to the list of cmds the Twitter API
supports thru statuses/update darcs-hash:20081005183850-462f3-1fcbf873c14f1048ba7c3ac23f6cd394066170c7.gz
-rw-r--r--actions/twitapistatuses.php2
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;