diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-01-22 15:45:20 +0100 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-01-22 15:45:20 +0100 |
| commit | c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440 (patch) | |
| tree | 442cb8268fb4c8ffc75e92bee4560ceab22aa92d /phpBB/includes/log/log.php | |
| parent | 2c4e7eabe248fc785cd2b43f57a42580361c599d (diff) | |
| download | forums-c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440.tar forums-c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440.tar.gz forums-c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440.tar.bz2 forums-c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440.tar.xz forums-c0ab3f3ddddefa8f902ffa57c864e6db5bf1f440.zip | |
[ticket/10714] Fix several doc blocks and comments
PHPBB3-10714
Diffstat (limited to 'phpBB/includes/log/log.php')
| -rw-r--r-- | phpBB/includes/log/log.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/includes/log/log.php b/phpBB/includes/log/log.php index 092fdb6a89..33c558695c 100644 --- a/phpBB/includes/log/log.php +++ b/phpBB/includes/log/log.php @@ -31,16 +31,19 @@ class phpbb_log implements phpbb_log_interface /** * Keeps the total log count of the last call to get_logs() + * @var int */ protected $entry_count; /** * Keeps the offset of the last valid page of the last call to get_logs() + * @var int */ protected $last_page_offset; /** * The table we use to store our logs. + * @var string */ protected $log_table; @@ -112,7 +115,7 @@ class phpbb_log implements phpbb_log_interface /* * IN_ADMIN is set after the session was created, - * so we need to take ADMIN_START into account aswell, otherwise + * so we need to take ADMIN_START into account as well, otherwise * it will not work for the phpbb_log object we create in common.php */ $this->set_is_admin((defined('ADMIN_START') && ADMIN_START) || (defined('IN_ADMIN') && IN_ADMIN)); |
