Skip to content

Commit

Permalink
fixes the checking for the overlay. version up
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Grissinger committed Aug 20, 2015
1 parent ef1fdb8 commit aad5633
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Controller extends Package
{
protected $pkgHandle = 'vivid_store';
protected $appVersionRequired = '5.7.3';
protected $pkgVersion = '2.3.1';
protected $pkgVersion = '2.3.2';
protected $pkgAutoloaderRegistries = array(
'src/AuthorizeNet' => '\AuthorizeNet',
'src/Omnipay' => '\Omnipay'
Expand Down Expand Up @@ -543,7 +543,8 @@ public function upgrade()
PaymentMethod::add('paypal_standard', 'PayPal Standard', $pkg);
}

if(empty(Config::get('vividstore.cartOverlay'))){
$co = Config::get('vividstore.cartOverlay');
if(empty($co)){
Config::save('vividstore.cartOverlay',false);
}

Expand Down

0 comments on commit aad5633

Please sign in to comment.