Development

Changeset 29872

You must first sign up to be able to contribute.

Changeset 29872

Show
Ignore:
Timestamp:
06/17/10 16:58:54 (3 years ago)
Author:
lombardot
Message:

[sfAtosPaymentPlugin] works with doctrine champgne !!

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfAtosPaymentPlugin/sf1.4/lib/sfAtosPayment.class.php

    r29870 r29872  
    234234    */ 
    235235   private function saveResponse($tableau){ 
    236     $sf_atos_cart=new $this->getNewCart(); 
     236    $object=$this->getNewCart(); 
     237    $sf_atos_cart=new $object(); 
    237238    //Le commercant 
    238239    $sf_atos_cart->setMerchantId($tableau[3]); 
     
    293294     
    294295    //Save 
    295     try{ 
    296296    $sf_atos_cart->save(); 
    297     }catch(Exception $e){ 
    298     mail('lombardot@spyrit.net','EXE',$e->getMessage()); 
    299     } 
    300297    return $sf_atos_cart; 
    301298