Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove addons links from the module #301

Merged
merged 5 commits into from Dec 16, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions blockreassurance.php
Expand Up @@ -103,7 +103,6 @@ public function __construct()
$this->author = 'PrestaShop';
$this->need_instance = false;
$this->module_key = '938b96386d4d79aa7cb891439cb0ef11';
$this->author_address = '0x64aa3c1e4034d07015f639b0e171b0d7b27d01aa';
This conversation was marked as resolved.
Show resolved Hide resolved

$this->bootstrap = true;
parent::__construct();
Expand Down Expand Up @@ -206,7 +205,7 @@ public function install()
return true;
}

$this->_errors[] = $this->trans('There was an error during the installation. Please contact us through Addons website.', [], 'Modules.Blockreassurance.Admin');
$this->_errors[] = $this->trans('There was an error during the installation. Please open an issue on the PrestaShop project https://github.com/PrestaShop/PrestaShop/issues.', [], 'Modules.Blockreassurance.Admin');
This conversation was marked as resolved.
Show resolved Hide resolved

return false;
}
Expand Down Expand Up @@ -236,7 +235,7 @@ public function uninstall()
return true;
}

$this->_errors[] = $this->trans('There was an error during the uninstallation. Please contact us through Addons website.', [], 'Modules.Blockreassurance.Admin');
$this->_errors[] = $this->trans('There was an error during the uninstallation. Please open an issue on the PrestaShop project https://github.com/PrestaShop/PrestaShop/issues.', [], 'Modules.Blockreassurance.Admin');

return false;
}
Expand Down