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