mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[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:
parent
a46b5480e1
commit
f739d7acce
1 changed files with 8 additions and 8 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue