diff --git a/public/admin/controller/blog/article.php b/public/admin/controller/blog/article.php index 6a298b2..efbeeb1 100644 --- a/public/admin/controller/blog/article.php +++ b/public/admin/controller/blog/article.php @@ -543,7 +543,7 @@ class ControllerBlogArticle extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/blog/category.php b/public/admin/controller/blog/category.php index f672802..f965019 100644 --- a/public/admin/controller/blog/category.php +++ b/public/admin/controller/blog/category.php @@ -316,7 +316,7 @@ class ControllerBlogCategory extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/catalog/category.php b/public/admin/controller/catalog/category.php index 125671e..39e9127 100644 --- a/public/admin/controller/catalog/category.php +++ b/public/admin/controller/catalog/category.php @@ -385,7 +385,7 @@ class ControllerCatalogCategory extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/catalog/information.php b/public/admin/controller/catalog/information.php index 8f8f0c5..cfc8771 100644 --- a/public/admin/controller/catalog/information.php +++ b/public/admin/controller/catalog/information.php @@ -355,7 +355,7 @@ class ControllerCatalogInformation extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/catalog/manufacturer.php b/public/admin/controller/catalog/manufacturer.php index dd2963a..c3a18bd 100644 --- a/public/admin/controller/catalog/manufacturer.php +++ b/public/admin/controller/catalog/manufacturer.php @@ -354,7 +354,7 @@ class ControllerCatalogManufacturer extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/catalog/product.php b/public/admin/controller/catalog/product.php index 5fc917b..c3d5643 100644 --- a/public/admin/controller/catalog/product.php +++ b/public/admin/controller/catalog/product.php @@ -621,7 +621,7 @@ class ControllerCatalogProduct extends Controller { $stores = array(); $stores[] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $store_results = $this->model_setting_store->getStores(); @@ -1101,7 +1101,7 @@ class ControllerCatalogProduct extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/design/seo_url.php b/public/admin/controller/design/seo_url.php index 73a044b..38e860c 100644 --- a/public/admin/controller/design/seo_url.php +++ b/public/admin/controller/design/seo_url.php @@ -469,7 +469,7 @@ class ControllerDesignSeoUrl extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/sale/order.php b/public/admin/controller/sale/order.php index fceb65a..76e3b17 100644 --- a/public/admin/controller/sale/order.php +++ b/public/admin/controller/sale/order.php @@ -618,7 +618,7 @@ class ControllerSaleOrder extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $results = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/service/category.php b/public/admin/controller/service/category.php index 7a2b769..5973688 100644 --- a/public/admin/controller/service/category.php +++ b/public/admin/controller/service/category.php @@ -316,7 +316,7 @@ class ControllerServiceCategory extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/service/service.php b/public/admin/controller/service/service.php index f1628c1..4ee0b30 100644 --- a/public/admin/controller/service/service.php +++ b/public/admin/controller/service/service.php @@ -540,7 +540,7 @@ class ControllerServiceService extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->language->get('text_default') + 'name' => $this->config->get('config_name') ); $stores = $this->model_setting_store->getStores(); diff --git a/public/admin/controller/setting/store.php b/public/admin/controller/setting/store.php index 30bcaf0..c29dfdf 100644 --- a/public/admin/controller/setting/store.php +++ b/public/admin/controller/setting/store.php @@ -108,7 +108,7 @@ class ControllerSettingStore extends Controller { $data['stores'][] = array( 'store_id' => 0, - 'name' => $this->config->get('config_name') . $this->language->get('text_default'), + 'name' => $this->config->get('config_name'), 'url' => $this->config->get('config_secure') ? HTTPS_CATALOG : HTTP_CATALOG, 'edit' => $this->url->link('setting/setting', 'user_token=' . $this->session->data['user_token'], true) );