Changed to StatusNet consistent terminology

This commit is contained in:
Craig Andrews
2009-11-16 11:17:14 -05:00
parent 5b51eeeebb
commit 73b4d770a2
2 changed files with 8 additions and 8 deletions

View File

@@ -47,17 +47,17 @@ class CommandInterpreter
} else {
return new LoginCommand($user);
}
case 'followers':
case 'subscribers':
if ($arg) {
return null;
} else {
return new FollowersCommand($user);
return new SubscribersCommand($user);
}
case 'following':
case 'subscriptions':
if ($arg) {
return null;
} else {
return new FollowingCommand($user);
return new SubscriptionsCommand($user);
}
case 'on':
if ($arg) {