diff options
-rw-r--r-- | actions/smssettings.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/smssettings.php b/actions/smssettings.php index 34243c72b..b5d55658f 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -229,8 +229,8 @@ class SmssettingsAction extends EmailsettingsAction { $this->show_form(_('No pending confirmation to cancel.')); return; } - if ($confirm->address != $sms || $confirm->address_extra != $carrier) { - $this->show_form(_('That is the wrong IM address.')); + if ($confirm->address != $sms) { + $this->show_form(_('That is the wrong confirmation number.')); return; } |