don't call shell_exec if safe_mode is on.

This commit is contained in:
Frank Karlitschek 2012-12-11 13:20:20 +01:00
parent ca7882a7c6
commit e55a3637ce

View file

@ -406,8 +406,12 @@ class OC_Mount_Config {
* check if smbclient is installed
*/
public static function checksmbclient() {
$output=shell_exec('which smbclient');
return (empty($output)?false:true);
if(function_exists('shell_exec')) {
$output=shell_exec('which smbclient');
return (empty($output)?false:true);
}else{
return(false);
}
}
/**