Changeset 29872
- Timestamp:
- 06/17/10 16:58:54 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfAtosPaymentPlugin/sf1.4/lib/sfAtosPayment.class.php
r29870 r29872 234 234 */ 235 235 private function saveResponse($tableau){ 236 $sf_atos_cart=new $this->getNewCart(); 236 $object=$this->getNewCart(); 237 $sf_atos_cart=new $object(); 237 238 //Le commercant 238 239 $sf_atos_cart->setMerchantId($tableau[3]); … … 293 294 294 295 //Save 295 try{296 296 $sf_atos_cart->save(); 297 }catch(Exception $e){298 mail('lombardot@spyrit.net','EXE',$e->getMessage());299 }300 297 return $sf_atos_cart; 301 298