diff options
author | zach <zach@copley.name> | 2008-07-15 00:31:21 -0400 |
---|---|---|
committer | zach <zach@copley.name> | 2008-07-15 00:31:21 -0400 |
commit | 3df358a9e98328de4d865b91a5900f834a1f195a (patch) | |
tree | d3da12870d887463610814d65722edc26b66859e /actions/api.php | |
parent | efd14edf5c985be04c74bd64fffbbf92c1530ea4 (diff) |
Prepended 'Twit' to Twitter-compatible API actions (renamed action
files) to make it more clear what the action files are for.
darcs-hash:20080715043121-ca946-bb7acd42271117dbb77d5e16292673a4b8cfad53.gz
Diffstat (limited to 'actions/api.php')
-rw-r--r-- | actions/api.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/api.php b/actions/api.php index 2e7ed3558..badd4a42a 100644 --- a/actions/api.php +++ b/actions/api.php @@ -76,7 +76,7 @@ class ApiAction extends Action { } function process_command() { - $action = "api$this->api_action"; + $action = "twitapi$this->api_action"; $actionfile = INSTALLDIR."/actions/$action.php"; if (file_exists($actionfile)) { require_once($actionfile); |