diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-12-07 14:39:57 +0100 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-12-07 14:39:57 +0100 |
commit | 5213ee1829c0ca4689d6137ac011cc759a727c59 (patch) | |
tree | 2db9f1deb572839a1c235804d304c6cd80874887 /phpBB/includes | |
parent | 72d1cae3f35d6f72f341b06761642545c6c663d2 (diff) | |
download | forums-5213ee1829c0ca4689d6137ac011cc759a727c59.tar forums-5213ee1829c0ca4689d6137ac011cc759a727c59.tar.gz forums-5213ee1829c0ca4689d6137ac011cc759a727c59.tar.bz2 forums-5213ee1829c0ca4689d6137ac011cc759a727c59.tar.xz forums-5213ee1829c0ca4689d6137ac011cc759a727c59.zip |
[ticket/10714] Make attributed protected rather then private
PHPBB3-10714
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/log/log.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php index eff084bbd2..b6f275835c 100644 --- a/phpBB/includes/log/log.php +++ b/phpBB/includes/log/log.php @@ -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 |