Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@
- Removed uneccesary inputs from admin settings
- Checked overall module stability

## [2.1.1]
## [2.1.0]
- BO : Redesigned back-office settings into a React single-page admin
- BO : Conditionally show/hide Saferpay Fields settings based on account license
- BO : Renamed the "Custom form" column in Payment methods to "Saferpay Fields"
Expand Down
2 changes: 1 addition & 1 deletion saferpayofficial.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function __construct($name = null)
{
$this->name = 'saferpayofficial';
$this->author = 'Invertus';
$this->version = '2.1.1';
$this->version = '2.1.0';
$this->module_key = '3d3506c3e184a1fe63b936b82bda1bdf';
$this->displayName = 'SaferpayOfficial';
$this->description = 'Saferpay Payment module';
Expand Down
10 changes: 8 additions & 2 deletions upgrade/install-2.1.0.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,14 @@

function upgrade_module_2_1_0()
{
$tabId = Tab::getIdFromClassName('AdminSaferPayOfficialPayment');
if ($tabId) {
$removedTabs = ['AdminSaferPayOfficialPayment', 'AdminSaferPayOfficialFields'];

foreach ($removedTabs as $className) {
$tabId = Tab::getIdFromClassName($className);
if (!$tabId) {
continue;
}

$tab = new Tab($tabId);
$tab->delete();
}
Expand Down
37 changes: 0 additions & 37 deletions upgrade/install-2.1.1.php

This file was deleted.

Loading