From 17acd5ccda5b23792477891ab969b378cacbbaf2 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Tue, 27 May 2014 19:51:04 +0200 Subject: Use public property instead of setter method to improve compatibility --- program/lib/Roundcube/rcube_session.php | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to 'program/lib/Roundcube/rcube_session.php') 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 @@ -729,16 +735,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 * -- cgit v1.2.3