From: Shinjiman Date: Sun, 9 Aug 2009 16:04:48 +0000 (+0000) Subject: Fix PHP Fatal error for r54627. X-Git-Tag: 1.31.0-rc.0~40401 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=eacc71b55e0d45ef4b311a01d71c2140f0caa78a;p=lhc%2Fweb%2Fwiklou.git Fix PHP Fatal error for r54627. --- diff --git a/includes/specials/SpecialVersion.php b/includes/specials/SpecialVersion.php index 04db78ad5b..d9f6c00c8d 100644 --- a/includes/specials/SpecialVersion.php +++ b/includes/specials/SpecialVersion.php @@ -222,7 +222,7 @@ class SpecialVersion extends SpecialPage { $execPath = substr_replace($execPath, '', 0, strlen($pathVar)); $execFullPath = trim($wgSVGConverterPath,'"') . $execPath; $execBinPath = $binPath . $execPath; - $execPathVal = checkExecPath( $execPath ); + $execPathVal = self::checkExecPath( $execPath ); if (strstr($execFullPath, ' ') != false) { $execFullPath = '"' . $execFullPath . '"'; }