Skip to content
Snippets Groups Projects
Commit a23052c6 authored by Marius Burkard's avatar Marius Burkard
Browse files

- fixed argument replacement in exec_safe function

parent 3c2f3189
No related branches found
No related tags found
No related merge requests found
......@@ -71,7 +71,8 @@ class system {
}
if($arg_count > 1) {
$args = func_get_args();
array_shift($args);
$pos = 0;
$a = 0;
foreach($args as $value) {
......
......@@ -2077,6 +2077,7 @@ class system{
}
if($arg_count > 1) {
$args = func_get_args();
array_shift($args);
$pos = 0;
$a = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment