Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2021-01-18 21:34:19 +0300
committerAleksander Machniak <alec@alec.pl>2021-01-18 21:34:19 +0300
commitec9c352ecbcc5482fb179fe5416640c668ff65a8 (patch)
tree0b47253a1cf299fbf75cdef296380add6344ed12 /program/include/rcmail.php
parent75fca18da4d6cdf8962adb591d51a2d699dc96a5 (diff)
Fix regression in handling save-pref action
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index 63f871964..8246510d5 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -250,9 +250,9 @@ class rcmail extends rcube
}
// execute action registered to a plugin task
- if ($this->plugins->is_plugin_task($this->task)) {
+ if ($this->plugins->is_plugin_task($task)) {
if (!$this->action) $this->action = 'index';
- $this->plugins->exec_action("{$this->task}.{$this->action}");
+ $this->plugins->exec_action("{$task}.{$this->action}");
break;
}