X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person_signup.php;h=7b3d7e0992a0e25c2084b57389899857e1db2188;hb=17a3570ac8868f28c9a97f6d119663007fb2468a;hp=4fa4ad6a019039547cab3ac18beb70969aa43741;hpb=093f544fc4ec92b92a01c7628478ff65c0599ea2;p=Pman.Core diff --git a/DataObjects/Core_person_signup.php b/DataObjects/Core_person_signup.php index 4fa4ad6a..7b3d7e09 100644 --- a/DataObjects/Core_person_signup.php +++ b/DataObjects/Core_person_signup.php @@ -14,11 +14,11 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject public $id; // int(11) not_null primary_key auto_increment public $email; // string(128) not_null - //public $name; // string(128) not_null + public $name; // string(128) not_null public $firstname; // string(128) not_null public $lastname; // string(128) not_null - //public $firstname_alt; // string(128) not_null - //public $lastname_alt; // string(128) not_null + public $firstname_alt; // string(128) not_null + public $lastname_alt; // string(128) not_null public $honor; // string(128) not_null @@ -38,16 +38,17 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject // copy into person or other entity... // and delete.... //$this->whereAdd("verify_key = '".$key."'"); - $row = $this->get("verify_key",$key); - if(!empty($row)){ + if(!$this->get("verify_key",$key)){ + var_dump($this); + exit(); $p = DB_DataObject::factory('person'); - $p->honor = $row->honor; - $p->name = $row->name; - $p->email = $row->email; - $p->firstname = $row->firstname; - $p->lastname = $row->lastname; - $p->firstname_alt = $row->firstname_alt; - $p->lastname_alt = $row->lastname_alt; + $p->honor = $this->honor; + $p->name = $this->name; + $p->email = $this->email; + $p->firstname = $this->firstname; + $p->lastname = $this->lastname; + $p->firstname_alt = $this->firstname_alt; + $p->lastname_alt = $this->lastname_alt; $temp_pwd = $p->generatePassword(); //$temp_pwd = mt_rand(100000,999999); //$p->passwd = $temp_pwd; @@ -71,6 +72,9 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject $email_sender = "no-reply@roojs.com"; $subject = "Congratulations"; $recipient_email = $p->email; + + var_dump($p->email); + exit(); $headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=utf-8\r\n"; @@ -80,7 +84,7 @@ class Pman_Core_DataObjects_Core_person_signup extends DB_DataObject $headers .= ">\r\n"; $body = $htmlStr; - if(mail($recipient_email, $subject, $body, $headers)){ + if(!mail($recipient_email, $subject, $body, $headers)){ error_log("Sending failed."); } }else{