mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-12 20:56:40 +02: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:
@ -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)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user