1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-12 01:50:48 +01:00

shell_exec_error() fix

This commit is contained in:
Michael Foster 2013-08-03 21:53:09 -04:00
parent b373b39f44
commit 486eccba2e

View File

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