From d9e2dc288d6f4b9f9ddf7c0ebf1da8c4480bbf07 Mon Sep 17 00:00:00 2001 From: ldecoker Date: Sun, 10 Mar 2013 19:27:21 +0100 Subject: [PATCH] Missing php_self variable Most of the controller have the php_self variable but not the ProductController. --- controllers/front/ProductController.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/controllers/front/ProductController.php b/controllers/front/ProductController.php index 4f43d3e73..a317f7bdd 100644 --- a/controllers/front/ProductController.php +++ b/controllers/front/ProductController.php @@ -26,6 +26,7 @@ class ProductControllerCore extends FrontController { + public $php_self = 'product'; /** * @var Product */ @@ -615,4 +616,4 @@ class ProductControllerCore extends FrontController } return $specific_prices; } -} \ No newline at end of file +}