diff --git a/CHANGELOG.md b/CHANGELOG.md index c1531bd..20455c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.1.2 +* Fix table create + ## 3.1.1 * Add 2.2.x.x compatibility diff --git a/README.md b/README.md index c851831..6c01856 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,8 @@ # PayU account plugin for OpenCart over 2.x -**Note: Plugin supports only OpenCart 2.x** +**Note: Plugin supports only OpenCart 2.0.x, 2.1.x and 2.2.x** +**For OpenCart 2.3.x please use 3.2.x plugin** ``This plugin is released under the GPL license.`` @@ -25,12 +26,10 @@ The PayU payments OpenCart plugin adds the PayU payment option and enables you t ## Prerequisites -**Important:** This plugin works only with checkout (REST API) points of sales (POS). +**Important:** This plugin works only with checkout (**REST API**) points of sales (POS). -The following PHP extensions are required: - -* [cURL][ext2] to connect and communicate to many different types of servers with many different types of protocols. -* [hash][ext3] to process directly or incrementally the arbitrary length messages by using a variety of hashing algorithms. +* PHP >= 5.3.0 +* PHP extensions are required - [cURL][ext2], [hash][ext3] ## Installation @@ -88,7 +87,5 @@ Defines which status is assigned to an order at a particular stage of order proc [ext1]: https://github.com/PayU/plugin_opencart_2 -[ext2]: http://php.net/manual/en/book.curl.php -[ext3]: http://php.net/manual/en/book.hash.php diff --git a/upload/catalog/controller/payment/payu.php b/upload/catalog/controller/payment/payu.php index eb8a917..ad57257 100644 --- a/upload/catalog/controller/payment/payu.php +++ b/upload/catalog/controller/payment/payu.php @@ -19,7 +19,7 @@ class ControllerPaymentPayU extends Controller const PAY_BUTTON = 'https://static.payu.com/pl/standard/partners/buttons/payu_account_button_01.png'; - const VERSION = '3.1.1'; + const VERSION = '3.1.2'; private $ocr = array(); private $totalWithoutDiscount = 0;