summaryrefslogtreecommitdiff
path: root/actions/apiaccountupdatedeliverydevice.php
diff options
context:
space:
mode:
authorCraig Andrews <candrews@integralblue.com>2010-01-23 01:25:27 -0500
committerCraig Andrews <candrews@integralblue.com>2010-01-27 13:48:35 -0500
commite9995b0f6ab0788162e22c996e5ee0af416dd519 (patch)
tree10b6eda02028c3320d0c7aaef88570f3ac862041 /actions/apiaccountupdatedeliverydevice.php
parent5224c7d6c263f078c3628650ff2b4b706862307c (diff)
Create IM plugin, Pluginize XMPP, Create AIM plugin
Diffstat (limited to 'actions/apiaccountupdatedeliverydevice.php')
-rw-r--r--actions/apiaccountupdatedeliverydevice.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php
index 684906fe9..4bd6c326f 100644
--- a/actions/apiaccountupdatedeliverydevice.php
+++ b/actions/apiaccountupdatedeliverydevice.php
@@ -119,10 +119,16 @@ class ApiAccountUpdateDeliveryDeviceAction extends ApiAuthAction
if (strtolower($this->device) == 'sms') {
$this->user->smsnotify = true;
} elseif (strtolower($this->device) == 'im') {
- $this->user->jabbernotify = true;
+ //TODO IM is pluginized now, so what should we do?
+ //Enable notifications for all IM plugins?
+ //For now, don't do anything
+ //$this->user->jabbernotify = true;
} elseif (strtolower($this->device == 'none')) {
$this->user->smsnotify = false;
- $this->user->jabbernotify = false;
+ //TODO IM is pluginized now, so what should we do?
+ //Disable notifications for all IM plugins?
+ //For now, don't do anything
+ //$this->user->jabbernotify = false;
}
$result = $this->user->update($original);