From 0344b168276f80189e2254c75a762aff5b517b6b Mon Sep 17 00:00:00 2001 From: Aleksander Machniak <alec@alec.pl> Date: Sun, 22 May 2016 06:32:57 -0400 Subject: [PATCH] Fix priority icon(s) position --- program/lib/Roundcube/rcube_session.php | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/program/lib/Roundcube/rcube_session.php b/program/lib/Roundcube/rcube_session.php index d087182..f0c012c 100644 --- a/program/lib/Roundcube/rcube_session.php +++ b/program/lib/Roundcube/rcube_session.php @@ -219,7 +219,9 @@ { // move gc execution to the script shutdown function // see rcube::shutdown() and rcube_session::write_close() - return $this->gc_enabled = $maxlifetime; + $this->gc_enabled = $maxlifetime; + + return true; } /** -- Gitblit v1.9.1