From 8d15f5d3e637d7f60e719bd7ba6d8b7991991abf Mon Sep 17 00:00:00 2001 From: gRoussac Date: Tue, 26 Nov 2013 23:08:03 +0100 Subject: [PATCH] [-] CORE : Merge of https://github.com/PrestaShop/PrestaShop/pull/814 --- classes/Store.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Store.php b/classes/Store.php index 22a43ed66..3df3ec905 100644 --- a/classes/Store.php +++ b/classes/Store.php @@ -114,7 +114,7 @@ class StoreCore extends ObjectModel public function __construct($id_store = null, $id_lang = null) { - parent::__construct($id_store, $id_lang); + parent::__construct($id_store); $this->id_image = ($this->id && file_exists(_PS_STORE_IMG_DIR_.(int)$this->id.'.jpg')) ? (int)$this->id : false; $this->image_dir = _PS_STORE_IMG_DIR_; }