From bec31a4e86ac0d6b569e7b9601b0bde4a0e26a16 Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Thu, 06 May 2010 13:51:31 -0400
Subject: [PATCH] - fix for use without session object

---
 program/include/rcmail.php |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index e657abe..d9ee00a 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -107,7 +107,7 @@
     $this->action = asciiwords(get_input_value('_action', RCUBE_INPUT_GPC));
 
     // reset some session parameters when changing task
-    if ($_SESSION['task'] != $this->task)
+    if ($this->session && $_SESSION['task'] != $this->task)
       $this->session->remove('page');
 
     // set current task to session

--
Gitblit v1.9.1