From: <var...@us...> - 2021-06-29 13:11:21
|
Revision: 10338 http://sourceforge.net/p/phpwiki/code/10338 Author: vargenau Date: 2021-06-29 13:11:19 +0000 (Tue, 29 Jun 2021) Log Message: ----------- PHP function implode(): separator must be the first argument Modified Paths: -------------- trunk/lib/FileFinder.php Modified: trunk/lib/FileFinder.php =================================================================== --- trunk/lib/FileFinder.php 2021-06-29 12:54:19 UTC (rev 10337) +++ trunk/lib/FileFinder.php 2021-06-29 13:11:19 UTC (rev 10338) @@ -320,7 +320,7 @@ array_splice($this->_path, $i, 1); } array_unshift($this->_path, $dir); - $GLOBALS['INCLUDE_PATH'] = implode($this->_path, $this->_get_ini_separator()); + $GLOBALS['INCLUDE_PATH'] = implode($this->_get_ini_separator(), $this->_path); @ini_set('include_path', $GLOBALS['INCLUDE_PATH']); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |