Skip to content
Snippets Groups Projects
Commit 22814a98 authored by Laurent's avatar Laurent
Browse files

Fix PHP5.4 compatibility

parent ca981c37
Branches
Tags
2 merge requests!1132Hotline#29412 images des articles dans le resultat de recherche,!1120Master
......@@ -26,7 +26,7 @@ class Class_Batch_Dilicom extends Class_Batch_Abstract {
protected static $_client;
protected $_ftp_path = 'HUB/O/';
protected $_local_path = PATH_TEMP . 'dilicom/';
protected $_local_path;
protected $_full_prefix = 'full_pnb_';
protected $_inc_prefix = 'diffusion_pnb_';
......@@ -41,6 +41,11 @@ class Class_Batch_Dilicom extends Class_Batch_Abstract {
}
public function __construct() {
$this->_local_path = PATH_TEMP . 'dilicom/';
}
public function getLabel() {
return $this->_('Import Dilicom');
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment