Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Plugin version bump for release
Browse files Browse the repository at this point in the history
  • Loading branch information
regdos committed Oct 15, 2015
1 parent 7f63298 commit 7b32363
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions upload/catalog/controller/payment/payu.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/*
* ver. 3.0.0
* ver. 3.0.1
* PayU Payment Modules
*
* @copyright Copyright 2015 by PayU
Expand All @@ -20,6 +20,8 @@ class ControllerPaymentPayU extends Controller

const PAY_BUTTON = 'https://static.payu.com/pl/standard/partners/buttons/payu_account_button_01.png';

const VERSION = '3.0.1';

protected $vouchersAmount = 0.0;

//loading PayU SDK
Expand All @@ -31,7 +33,7 @@ private function loadLibConfig()
OpenPayU_Configuration::setSignatureKey($this->config->get('payu_signaturekey'));
OpenPayU_Configuration::setEnvironment();
OpenPayU_Configuration::setApiVersion(2.1);
OpenPayU_Configuration::setSender('OpenCart ver ' . VERSION . ' / Plugin ver 3.0.0');
OpenPayU_Configuration::setSender('OpenCart ver ' . VERSION . ' / Plugin ver '.self::VERSION);
$this->logger = new Log('payu.log');
}

Expand Down

0 comments on commit 7b32363

Please sign in to comment.