GX-Bug #43856 » Added_try_catch_block_in_the_CreateAccountProcess.patch
| src/GXEngine/Extensions/Customers/AbstractCreateAccountProcess.inc.php (revision ) | ||
|---|---|---|
| 57 | 57 |
*/ |
| 58 | 58 |
public function proceedRegistree(KeyValueCollection $customerCollection, GMLogoManager $logoManager) |
| 59 | 59 |
{
|
| 60 |
try |
|
| 61 |
{
|
|
| 60 |
$this->customerCollection = $customerCollection; |
|
| 61 |
|
|
| 62 |
$this->_validateRegistree(); |
|
| 63 |
$this->_saveRegistree(); |
|
| 64 |
$this->_login(); |
|
| 65 |
$this->_proceedVoucher(); |
|
| 66 |
$this->_proceedTracking(); |
|
| 67 |
$this->_proceedMail($logoManager); |
|
| 62 |
$this->customerCollection = $customerCollection; |
|
| 63 |
|
|
| 64 |
$this->_validateRegistree(); |
|
| 65 |
$this->_saveRegistree(); |
|
| 66 |
$this->_login(); |
|
| 67 |
$this->_proceedVoucher(); |
|
| 68 |
$this->_proceedTracking(); |
|
| 69 |
$this->_proceedMail($logoManager); |
|
| 70 |
} |
|
| 71 |
catch(Exception $ex) |
|
| 72 |
{
|
|
| 73 |
$log = LogControl::get_instance(); |
|
| 74 |
$log->notice($ex->getMessage()); |
|
| 75 |
} |
|
| 68 | 76 |
} |
| 69 | 77 |
|
| 70 | 78 |
|