From e55a3637ce867d84c6de8bffe9898d8444bee212 Mon Sep 17 00:00:00 2001 From: Frank Karlitschek Date: Tue, 11 Dec 2012 13:20:20 +0100 Subject: [PATCH] don't call shell_exec if safe_mode is on. --- apps/files_external/lib/config.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index afd28288b2e..e37b610000a 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -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); + } } /** -- 2.39.5