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>2020-11-27 11:20:35 +0300
committerAleksander Machniak <alec@alec.pl>2020-11-27 11:20:35 +0300
commit21e1ed5c32e9a036c29decae6044624245f857b3 (patch)
treed589548bd44cc9335ea89171a3ebf4c85895cc9c /program/include/rcmail.php
parentc98059e43d381d7dc9a12da8c17899cfeba8d693 (diff)
Remove redundant func_get_arg() call
Diffstat (limited to 'program/include/rcmail.php')
-rw-r--r--program/include/rcmail.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcmail.php b/program/include/rcmail.php
index e559e0116..2b70c5693 100644
--- a/program/include/rcmail.php
+++ b/program/include/rcmail.php
@@ -1031,7 +1031,7 @@ class rcmail extends rcube
return $p;
}
- $p = ['_action' => @func_get_arg(0)];
+ $p = ['_action' => $p];
}
$task = $this->task;