From: <var...@us...> - 2014-10-09 14:10:50
|
Revision: 9234 http://sourceforge.net/p/phpwiki/code/9234 Author: vargenau Date: 2014-10-09 14:10:38 +0000 (Thu, 09 Oct 2014) Log Message: ----------- function _get_lang is static Modified Paths: -------------- trunk/lib/FileFinder.php Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2014-10-09 14:09:54 UTC (rev 9233) +++ trunk/lib/FileFinder.php 2014-10-09 14:10:38 UTC (rev 9234) @@ -316,7 +316,7 @@ * * @return string The value of $LANG. */ - public function _get_lang() + public static function _get_lang() { if (!empty($GLOBALS['LANG'])) return $GLOBALS['LANG']; @@ -447,7 +447,7 @@ } } - $this->FileFinder(array_merge($path, $include_path)); + parent::__construct(array_merge($path, $include_path)); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |