From 738d50a631a494ba849188fd5095c6bec8f66ff5 Mon Sep 17 00:00:00 2001 From: zach Date: Sun, 5 Oct 2008 14:38:50 -0400 Subject: [PATCH] Added OnCommand and OffCommand to the list of cmds the Twitter API supports thru statuses/update darcs-hash:20081005183850-462f3-1fcbf873c14f1048ba7c3ac23f6cd394066170c7.gz --- actions/twitapistatuses.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/twitapistatuses.php b/actions/twitapistatuses.php index 9865111d74..53c5f13264 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;