You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reported by kevinlam on 22 Aug 2014 01:49 UTC as Trac ticket #1490041
When the "$RCMAIL->set_task" was called in php side, it does not call the "output->set_env" to change the "comm_path" variable to js side. Then, the js side script uses the wrong url to make requests.
Reported by kevinlam on 22 Aug 2014 01:49 UTC as Trac ticket #1490041
When the "$RCMAIL->set_task" was called in php side, it does not call the "output->set_env" to change the "comm_path" variable to js side. Then, the js side script uses the wrong url to make requests.
Simple Fix:
At rcmail.php::set_task
...
if ($this->output) {
$this->output->set_env('task', $this->task);
@+++
$this->output->set_env('comm_path', $this->comm_path);
}
...
Migrated-From: http://trac.roundcube.net/ticket/1490041
The text was updated successfully, but these errors were encountered: