summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2013-04-29 09:07:30 +0200
committerAleksander Machniak <alec@alec.pl>2013-04-29 09:08:05 +0200
commitaf98eb046f28e5cf100293dc7b037dc69f7d6333 (patch)
tree9fb74b4ccc10414e9d0b97329bfa1fb4788a3b37
parent8eb66e38c9f2ce2e4af1f7fe9edcbb9071922ff4 (diff)
Fix list page reset when viewing a message in Larry skin (#1489076)
-rw-r--r--CHANGELOG1
-rw-r--r--program/include/rcmail.php5
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 3586d37d7..ec2d3dc2a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
+- Fix list page reset when viewing a message in Larry skin (#1489076)
- Fix min_refresh_interval handling on preferences save (#1489073)
- Fix PDF support detection for Firefox PDF.js (#1488972)
- Fix messages list focus issue in Internet Explorer (#1489058)
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;