Skip to content

Commit

Permalink
Merge pull request #16 from paynl/feature/PLUG-675
Browse files Browse the repository at this point in the history
feature/PLUG-675
  • Loading branch information
woutse committed Oct 12, 2021
2 parents 59ae7a9 + d836b73 commit e5edcd5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/addons/paynl_addon/addon.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<id>paynl_addon</id>
<name>PAY.</name>
<description>PAY. Gateway addon</description>
<version>1.1.6</version>
<version>1.1.7</version>
<priority>1000</priority>
<settings layout="separate">
<sections>
Expand All @@ -30,7 +30,7 @@
<status>active</status>
<queries>
<item for="install">
CREATE TABLE `?:paynl_transactions` (
CREATE TABLE IF NOT EXISTS `?:paynl_transactions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`transaction_id` varchar(50) NOT NULL,
`option_id` int(11) NOT NULL,
Expand Down
2 changes: 1 addition & 1 deletion app/addons/paynl_addon/func.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function getObjectData()
{
$phpVersion = substr(phpversion(), 0, 3);
$cscartVersion = defined('PRODUCT_VERSION') ? PRODUCT_VERSION : '-';
$payPlugin = '1.1.6';
$payPlugin = '1.1.7';

return substr('cscart ' . $payPlugin . ' | ' . $cscartVersion . ' | ' . $phpVersion, 0, 64);
}
Expand Down

0 comments on commit e5edcd5

Please sign in to comment.