From: <var...@us...> - 2014-07-17 15:34:50
|
Revision: 8979 http://sourceforge.net/p/phpwiki/code/8979 Author: vargenau Date: 2014-07-17 15:34:47 +0000 (Thu, 17 Jul 2014) Log Message: ----------- Use public when needed Modified Paths: -------------- trunk/lib/FileFinder.php Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2014-07-17 15:27:35 UTC (rev 8978) +++ trunk/lib/FileFinder.php 2014-07-17 15:34:47 UTC (rev 8979) @@ -142,7 +142,7 @@ * @param string $path * @return string path_separator. */ - private function _use_path_separator($path) + public function _use_path_separator($path) { if (isWindows95()) { if (empty($path)) return "\\"; @@ -158,7 +158,7 @@ * @param $path string Path. * @return bool True if path is absolute. */ - private function _is_abs($path) + public function _is_abs($path) { if (substr($path, 0, 1) == '/') { return true; @@ -177,7 +177,7 @@ * @param $path string Path. * @return bool New path (destructive) */ - private function _strip_last_pathchar(&$path) + public function _strip_last_pathchar(&$path) { if (substr($path, -1) == '/' or substr($path, -1) == "\\") $path = substr($path, 0, -1); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |