Update exec.php

This commit is contained in:
FusionPBX 2019-08-15 10:30:18 -06:00 committed by GitHub
parent d2d9f39a77
commit 2ebb734912
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@
switch ($handler) {
case 'shell':
if (permission_exists('exec_command') && $command_authorized) {
$result = escape(shell_exec($command . " 2>&1"));
$result = shell_exec($command . " 2>&1");
}
break;
case 'php':