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

This commit is contained in:
rMalie
2012-04-26 08:55:55 +00:00
parent 740fb1283e
commit e580832934
27 changed files with 103 additions and 104 deletions
@@ -28,13 +28,13 @@
class AdminEmployeesControllerCore extends AdminController
{
/** @var array profiles list */
private $profiles_array = array();
protected $profiles_array = array();
/** @var array themes list*/
private $themes = array();
protected $themes = array();
/** @var array tabs list*/
private $tabs_list = array();
protected $tabs_list = array();
public function __construct()
{