mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 22:30:30 -04:00
Fix broken enum
This commit is contained in:
parent
cf6f01981b
commit
3215e8edcf
3 changed files with 3 additions and 3 deletions
|
@ -69,8 +69,8 @@ try{
|
|||
$driver = FirefoxDriver::start($capabilities);
|
||||
|
||||
foreach($pendingPayments as $pendingPayment){
|
||||
$pendingPayment->Processor = PaymentProcessor::from($pendingPayment->Processor);
|
||||
if($pendingPayment->Processor == PaymentProcessor::FracturedAtlas){
|
||||
$pendingPayment->Processor = PaymentProcessorType::from($pendingPayment->Processor);
|
||||
if($pendingPayment->Processor == PaymentProcessorType::FracturedAtlas){
|
||||
$log->Write('Processing donation ' . $pendingPayment->TransactionId . ' ...');
|
||||
|
||||
if(Db::QueryInt('
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue