Fix PHP Fatal error for r54627.
authorShinjiman <shinjiman@users.mediawiki.org>
Sun, 9 Aug 2009 16:04:48 +0000 (16:04 +0000)
committerShinjiman <shinjiman@users.mediawiki.org>
Sun, 9 Aug 2009 16:04:48 +0000 (16:04 +0000)
includes/specials/SpecialVersion.php

index 04db78a..d9f6c00 100644 (file)
@@ -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 . '"';
                                }