// Use protected instead of private for classes we can override #PSCFV-1976

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14895 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-04-26 08:55:55 +00:00
parent 9b43f43f21
commit e01a890c01
27 changed files with 103 additions and 104 deletions
@@ -28,13 +28,13 @@
class AdminCmsContentControllerCore extends AdminController
{
/** @var object adminCMSCategories() instance */
private $adminCMSCategories;
protected $adminCMSCategories;
/** @var object adminCMS() instance */
private $adminCMS;
protected $adminCMS;
/** @var object Category() instance for navigation*/
private static $_category = null;
protected static $_category = null;
public function __construct()
{