Commit 3c3dd7dabc6d8cb01cbd66d33a3491f3aa724001

Authored by Adrian
1 parent 03ad6d19

Solucionado error en el ámbito de atributos de la clase principal.

config.xml
... ... @@ -2,7 +2,7 @@
2 2 <module>
3 3 <name>imaxmultiean</name>
4 4 <displayName><![CDATA[Gestor de EANs Múltiples]]></displayName>
5   - <version><![CDATA[1.7]]></version>
  5 + <version><![CDATA[1.8]]></version>
6 6 <description><![CDATA[Permite añadir y gestionar múltiples códigos EAN para cada producto y combinación.]]></description>
7 7 <author><![CDATA[Informax]]></author>
8 8 <tab><![CDATA[administration]]></tab>
... ...
imaxmultiean.php
... ... @@ -11,8 +11,9 @@ class ImaxMultiEAN extends Module {
11 11 var $idShop;
12 12 var $idLang;
13 13 var $idTab;
14   - private $_html = '', $path, $idManual, $forceCheck, $sufijo, $prefijo;
15   -
  14 + private $_html = '', $path, $idManual, $forceCheck;
  15 + public $sufijo, $prefijo;
  16 +
16 17 private static $funciones;
17 18  
18 19 const prefijo = 'imaxmultiean_';
... ... @@ -22,7 +23,7 @@ class ImaxMultiEAN extends Module {
22 23 $this->name = 'imaxmultiean';
23 24 $this->tab = 'administration';
24 25 $this->path = _PS_MODULE_DIR_ . $this->name . '/';
25   - $this->version = '1.7';
  26 + $this->version = '1.8';
26 27 $this->author = 'Informax';
27 28 $this->need_instance = 0;
28 29 $this->idManual = '';
... ...