From 810f17c38e262f3aeac8fc35a2c345ea5da2c4d7 Mon Sep 17 00:00:00 2001 From: aFolletete Date: Tue, 27 Sep 2011 14:52:52 +0000 Subject: [PATCH] // rename index.tpl to layout.tpl git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8809 b9a71923-0436-4b27-9f14-aed3839534dd --- admin-dev/themes/template/{index.tpl => layout.tpl} | 0 classes/AdminController.php | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename admin-dev/themes/template/{index.tpl => layout.tpl} (100%) diff --git a/admin-dev/themes/template/index.tpl b/admin-dev/themes/template/layout.tpl similarity index 100% rename from admin-dev/themes/template/index.tpl rename to admin-dev/themes/template/layout.tpl diff --git a/classes/AdminController.php b/classes/AdminController.php index 6111dac62..77a324601 100644 --- a/classes/AdminController.php +++ b/classes/AdminController.php @@ -7,7 +7,7 @@ class AdminControllerCore extends Controller public $warnings; public $content_only = false; - public $layout = 'index.tpl'; + public $layout = 'layout.tpl'; public $template = ''; @@ -141,7 +141,7 @@ class AdminControllerCore extends Controller $this->{'displayAjax'.$action}(); else $this->displayAjax(); - + } }