[ticket/10752] Changing private to protected variables in acp_styles

Changing private to protected variables in acp_styles

PHPBB3-10752
This commit is contained in:
Vjacheslav Trushkin 2012-04-03 01:14:14 +03:00
parent a46b5480e1
commit f739d7acce

View file

@ -28,14 +28,14 @@ class acp_styles
var $styles_path_absolute = 'styles'; var $styles_path_absolute = 'styles';
var $default_style = 0; var $default_style = 0;
private $db = false; protected $db;
private $user = false; protected $user;
private $template = false; protected $template;
private $request = false; protected $request;
private $cache = false; protected $cache;
private $auth = false; protected $auth;
private $phpbb_root_path = false; protected $phpbb_root_path;
private $phpEx = false; protected $phpEx;
function main($id, $mode) function main($id, $mode)
{ {