From: Alan Knowles Date: Tue, 6 Sep 2011 09:53:06 +0000 (+0800) Subject: MTrack/SCM.php X-Git-Url: http://git.roojs.org/?p=web.mtrack;a=commitdiff_plain;h=00f3563752f1a6e8069a075c1a3a07db86c81cc0 MTrack/SCM.php --- diff --git a/MTrack/SCM.php b/MTrack/SCM.php index 85bf6c52..c0e0188a 100644 --- a/MTrack/SCM.php +++ b/MTrack/SCM.php @@ -65,12 +65,12 @@ abstract class MTrackSCM foreach ($args as $arg) { if (!is_array($arg)) { - $cmd .= ' ' . SCM::escapeshellarg($arg); + $cmd .= ' ' . MTrackSCM::escapeshellarg($arg); continue; } foreach ($arg as $a) { - $cmd .= ' ' . SCM::escapeshellarg($a); + $cmd .= ' ' . MTrackSCM::escapeshellarg($a); } }