From af98eb046f28e5cf100293dc7b037dc69f7d6333 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Mon, 29 Apr 2013 09:07:30 +0200 Subject: Fix list page reset when viewing a message in Larry skin (#1489076) --- program/include/rcmail.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'program/include') diff --git a/program/include/rcmail.php b/program/include/rcmail.php index 249bd0559..c35c24f8c 100644 --- a/program/include/rcmail.php +++ b/program/include/rcmail.php @@ -98,7 +98,10 @@ class rcmail extends rcube // reset some session parameters when changing task if ($this->task != 'utils') { - if ($this->session && $_SESSION['task'] != $this->task) + // we reset list page when switching to another task + // but only to the main task interface - empty action (#1489076) + // this will prevent from unintentional page reset on cross-task requests + if ($this->session && $_SESSION['task'] != $this->task && empty($this->action)) $this->session->remove('page'); // set current task to session $_SESSION['task'] = $this->task; -- cgit v1.2.3