Browse Source

Fix regression in handling save-pref action

pull/7848/head
Aleksander Machniak 5 years ago
parent
commit
ec9c352ecb
  1. 4
      program/include/rcmail.php

4
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;
}

Loading…
Cancel
Save