Skip to content

Commit

Permalink
Fix module key and set new version
Browse files Browse the repository at this point in the history
  • Loading branch information
ioannis-papikas committed Oct 23, 2017
1 parent 32f3792 commit 4c1a223
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Expand Up @@ -7,16 +7,16 @@ in all versions (major and minor)
To get the diff for a specific change, go to https://github.com/esatisfaction/esat-prestashop/commit/XXX where
XXX is the change hash

* 0.2.1 (2017-03-02)
* Fix email not passing to e-satisfaction upon checkout, resulting for most of the orders (but not all), resulting to customers not been able to receive the after sales questionnaire.

* 0.2.9 (2017-10-23)
* [fix] Fix module key
* 0.2.8 (2017-09-21)
* [fix] Check for result using is_array and isset when generating excel
* 0.2.2 (2017-03-27)
* Make server api calls only if site id is set. Check for valid responses.
* Porper sql query paraeters escape.
* Ui changes to match prestashop defaults.
* Update INSERT queries according to prestashop specifications.
* Check for site id before executing order list code/page and order analysis code/page.
* Update html tags and file structure based on prestashop standards/specifications.

* 0.2.8 (2017-09-21)
* [fix] Check for result using is_array and isset when generating excel
* 0.2.1 (2017-03-02)
* Fix email not passing to e-satisfaction upon checkout, resulting for most of the orders (but not all), resulting to customers not been able to receive the after sales questionnaire.
6 changes: 3 additions & 3 deletions esatisfaction.php
Expand Up @@ -11,7 +11,7 @@
* @author e-satisfaction SA
* @copyright 2016 e-satisfaction SA
* @license https://opensource.org/licenses
* @version 0.2.8
* @version 0.2.9
*/

class Esatisfaction extends Module
Expand Down Expand Up @@ -46,12 +46,12 @@ public function __construct()
{
$this->name = 'esatisfaction';
$this->tab = 'other';
$this->version = '0.2.8';
$this->version = '0.2.9';
$this->author = 'e-satisfaction SA';
$this->tab = 'analytics_stats';
$this->need_instance = 0;
$this->ps_versions_compliancy = array('min' => '1.6', 'max' => _PS_VERSION_);
$this->module_key = 'd58dc4e1452557f07400a497810a3801';
$this->module_key = '5cd651fbc7befadc249391eb1ef2bf7d';
$this->bootstrap = true;
parent::__construct();
$this->displayName = $this->l('e-satisfaction tracking module');
Expand Down
2 changes: 1 addition & 1 deletion override/controllers/admin/AdminOrdersController.php
Expand Up @@ -11,7 +11,7 @@
* @author e-satisfaction SA
* @copyright 2016 e-satisfaction SA
* @license https://opensource.org/licenses
* @version 0.2.8
* @version 0.2.9
*/

class AdminOrdersController extends AdminOrdersControllerCore
Expand Down

0 comments on commit 4c1a223

Please sign in to comment.