From: garvinhicking Date: Mon, 26 Jun 2006 09:02:23 +0000 (+0000) Subject: fix bad get_include_path parameter, thakns to Larry Rosenman X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=15f645454219c95a7095cf8c40cee2d33687f405;p=s9y.git fix bad get_include_path parameter, thakns to Larry Rosenman --- diff --git a/serendipity_config.inc.php b/serendipity_config.inc.php index af076b5..8958819 100644 --- a/serendipity_config.inc.php +++ b/serendipity_config.inc.php @@ -149,7 +149,7 @@ if ( !defined('IN_installer') && IS_installed === false ) { /* Do the PEAR dance. If $serendipity['use_PEAR'] is set to FALSE, Serendipity will first put its own PEAR include path. By default, a local PEAR will be used. */ if (function_exists('get_include_path')) { - $old_include = @get_include_path('include_path'); + $old_include = @get_include_path(); } else { $old_include = @ini_get('include_path'); }