mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-29 06:38:52 +00:00
[ticket/10714] Make attributed protected rather then private
PHPBB3-10714
This commit is contained in:
parent
72d1cae3f3
commit
5213ee1829
1 changed files with 4 additions and 4 deletions
|
@ -25,22 +25,22 @@ class phpbb_log implements phpbb_log_interface
|
|||
/**
|
||||
* Keeps the status of the log system. Is the log enabled or disabled?
|
||||
*/
|
||||
private $disabled_logs;
|
||||
protected $disabled_logs;
|
||||
|
||||
/**
|
||||
* Keeps the total log count of the last call to get_logs()
|
||||
*/
|
||||
private $logs_total;
|
||||
protected $logs_total;
|
||||
|
||||
/**
|
||||
* Keeps the offset of the last valid page of the last call to get_logs()
|
||||
*/
|
||||
private $logs_offset;
|
||||
protected $logs_offset;
|
||||
|
||||
/**
|
||||
* The table we use to store our logs.
|
||||
*/
|
||||
private $log_table;
|
||||
protected $log_table;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
|
|
Loading…
Add table
Reference in a new issue