[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 $default_style = 0;
private $db = false;
private $user = false;
private $template = false;
private $request = false;
private $cache = false;
private $auth = false;
private $phpbb_root_path = false;
private $phpEx = false;
protected $db;
protected $user;
protected $template;
protected $request;
protected $cache;
protected $auth;
protected $phpbb_root_path;
protected $phpEx;
function main($id, $mode)
{