From: Brion Vibber Date: Sun, 2 Apr 2006 03:58:17 +0000 (+0000) Subject: Live fix: debug shell-outs X-Git-Tag: 1.6.0~74 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=5a197f8b61b90440679e45c36ca05f061b0ec70a;p=lhc%2Fweb%2Fwiklou.git Live fix: debug shell-outs --- diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index 80acdc1f1e..745fa38c13 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -1624,6 +1624,7 @@ function wfShellExec( $cmd ) # http://news.php.net/php.internals/21796 $cmd = '"' . $cmd . '"'; } + wfDebug( "wfShellExec: $cmd\n" ); return shell_exec( $cmd ); }