Browse Source

shell_exec_error() fix

pull/40/head
Michael Foster 11 years ago
parent
commit
486eccba2e
  1. 2
      inc/functions.php

2
inc/functions.php

@ -1947,5 +1947,5 @@ function shell_exec_error($command) {
);
}
return $return === 'TB_SUCCESS' ? false : $return;
return ($return === 'TB_SUCCESS') ? false : $return;
}

Loading…
Cancel
Save