Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8247
Modified Files:
functions_installer.inc.php
Log Message:
- array_merge() PATH data :)
Index: functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_installer.inc.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- functions_installer.inc.php 3 Feb 2005 19:14:44 -0000 1.34
+++ functions_installer.inc.php 3 Feb 2005 19:19:56 -0000 1.35
@@ -132,7 +132,7 @@
$path[] = ini_get('safe_mode_exec_dir');
if (isset($_SERVER['PATH'])) {
- $path = explode(':', $_SERVER['PATH']);
+ $path = array_merge($path, explode(':', $_SERVER['PATH']));
}
/* add some other possible locations to the path while we are at it,
|