From: Evan Prodromou Date: Tue, 30 Sep 2008 13:05:30 +0000 (-0400) Subject: use two-arg constructor for confirmation code X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ce1002c7bea03666fc3c08eb6bc6157cac83e961;p=quix0rs-gnu-social.git use two-arg constructor for confirmation code darcs-hash:20080930130530-5ed1f-48d4d4a503a6bb37c91d828139d652a272b9734a.gz --- diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index 1f2cff1975..c9813bcd08 100644 --- a/actions/recoverpassword.php +++ b/actions/recoverpassword.php @@ -50,7 +50,7 @@ class RecoverpasswordAction extends Action { function check_code() { $code = $this->trimmed('code'); - $confirm = Confirm_address::staticGet($code); + $confirm = Confirm_address::staticGet('code', $code); if (!$confirm) { $this->client_error(_('No such recovery code.'));