From: <var...@us...> - 2014-07-18 14:54:59
|
Revision: 8994 http://sourceforge.net/p/phpwiki/code/8994 Author: vargenau Date: 2014-07-18 14:54:51 +0000 (Fri, 18 Jul 2014) Log Message: ----------- More public Modified Paths: -------------- trunk/lib/FileFinder.php Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2014-07-18 14:48:33 UTC (rev 8993) +++ trunk/lib/FileFinder.php 2014-07-18 14:54:51 UTC (rev 8994) @@ -235,7 +235,7 @@ * * @return array Include path. */ - private function _get_include_path() + public function _get_include_path() { if (defined("INCLUDE_PATH")) $path = INCLUDE_PATH; @@ -316,7 +316,7 @@ * * @return string The value of $LANG. */ - private function _get_lang() + public function _get_lang() { if (!empty($GLOBALS['LANG'])) return $GLOBALS['LANG']; @@ -408,7 +408,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. |