Skip to content

Commit

Permalink
Merge pull request #587 from PrestaShopCorp/feat/bump-443
Browse files Browse the repository at this point in the history
feat(Version): :tag: Bump version to 4.4.3
  • Loading branch information
intraordinaire authored Jun 8, 2023
2 parents fe46046 + 0af6bb9 commit 4d06b01
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>ps_mbo</name>
<displayName><![CDATA[PrestaShop Marketplace in your Back Office]]></displayName>
<version><![CDATA[4.4.2]]></version>
<version><![CDATA[4.4.3]]></version>
<description><![CDATA[Discover the best PrestaShop modules to optimize your online store.]]></description>
<author><![CDATA[PrestaShop]]></author>
<tab><![CDATA[administration]]></tab>
Expand Down
4 changes: 2 additions & 2 deletions ps_mbo.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class ps_mbo extends Module
/**
* @var string
*/
public const VERSION = '4.4.2';
public const VERSION = '4.4.3';

public const CONTROLLERS_WITH_CONNECTION_TOOLBAR = [
'AdminPsMboModule',
Expand Down Expand Up @@ -104,7 +104,7 @@ class ps_mbo extends Module
public function __construct()
{
$this->name = 'ps_mbo';
$this->version = '4.4.2';
$this->version = '4.4.3';
$this->author = 'PrestaShop';
$this->tab = 'administration';
$this->module_key = '6cad5414354fbef755c7df4ef1ab74eb';
Expand Down
30 changes: 30 additions & 0 deletions translations/en-US/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License version 3.0
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/AFL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to [email protected] so we can send you a copy immediately.
*
* @author PrestaShop SA and Contributors <[email protected]>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/AFL-3.0 Academic Free License version 3.0
*/


header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');

header('Cache-Control: no-store, no-cache, must-revalidate');
header('Cache-Control: post-check=0, pre-check=0', false);
header('Pragma: no-cache');

header('Location: ../');
exit;

0 comments on commit 4d06b01

Please sign in to comment.