]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
type -> address_type
authorEvan Prodromou <evan@controlezvous.ca>
Tue, 24 Jun 2008 22:14:37 +0000 (18:14 -0400)
committerEvan Prodromou <evan@controlezvous.ca>
Tue, 24 Jun 2008 22:14:37 +0000 (18:14 -0400)
darcs-hash:20080624221437-34904-746bd79dbef949c16095b9b44a9a721288abb989.gz

actions/recoverpassword.php

index 9be3c45806161785e6984f363c3b8341f77663d3..edfa9194dae79c2f04cee256fafe947034e241b4 100644 (file)
@@ -46,7 +46,7 @@ class RecoverpasswordAction extends Action {
        function check_code() {
                $code = $this->trimmed('code');
                $confirm = Confirm_address::staticGet($code);
-               if ($confirm && $confirm->type == 'recover') {
+               if ($confirm && $confirm->address_type == 'recover') {
                        $user = User::staticGet($confirm->user_id);
                        if ($user) {
                                $result = $confirm->delete();
@@ -158,7 +158,7 @@ class RecoverpasswordAction extends Action {
 
                $confirm = new Confirm_address();
                $confirm->code = common_confirmation_code(128);
-               $confirm->type = 'recover';
+               $confirm->address_type = 'recover';
                $confirm->user_id = $user->id;
                $confirm->address = $user->email;