Merge branch 'bootstrap' of https://github.com/PrestaShop/PrestaShop into bootstrap

This commit is contained in:
Kevin Granger
2013-11-21 17:43:59 +01:00
+6 -7
View File
@@ -27,14 +27,8 @@
class ProductControllerCore extends FrontController
{
public $php_self = 'product';
/**
* @var Product
*/
protected $product;
/**
* @var Category
*/
protected $product;
protected $category;
public function setMedia()
@@ -668,4 +662,9 @@ class ProductControllerCore extends FrontController
{
return $this->product;
}
public function getCategory()
{
return $this->category;
}
}