Update of /cvsroot/phpbt/phpbt/inc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26483/inc
Modified Files:
functions.php
Log Message:
Bug #1329367 "PHP Version - misinformation!"
Changed get_include_path() into ini_get('include_path')
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- functions.php 5 Oct 2005 20:28:53 -0000 1.69
+++ functions.php 18 Oct 2005 18:43:15 -0000 1.70
@@ -752,7 +752,7 @@
* @return bool
*/
function find_include($file) {
- foreach (explode(PATH_SEPARATOR, get_include_path()) as $path) {
+ foreach (explode(PATH_SEPARATOR, ini_get('include_path')) as $path) {
if (file_exists("$path/$file")) return true;
}
return false;
|