diff options
-rw-r--r-- | program/lib/Roundcube/rcube_session.php | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/program/lib/Roundcube/rcube_session.php b/program/lib/Roundcube/rcube_session.php index f04f47a21..26f78433a 100644 --- a/program/lib/Roundcube/rcube_session.php +++ b/program/lib/Roundcube/rcube_session.php @@ -44,10 +44,16 @@ class rcube_session private $secret = ''; private $ip_check = false; private $logging = false; - private $nowrite = false; private $storage; private $memcache; + /** + * Blocks session data from being written to database. + * Can be used if write-race conditions are to be expected + * @var boolean + */ + public $nowrite = false; + /** * Default constructor @@ -730,16 +736,6 @@ class rcube_session /** - * Blocks session data from being written to database. - * Can be used if write-race conditions are to be expected - */ - function nowrite($block = true) - { - $this->nowrite = $block; - } - - - /** * Check session authentication cookie * * @return boolean True if valid, False if not |