Version 0.8.5 ()
------------------------------------------------------------------------
+ * Fix cosmetic warning message about missing S9Y_PEAR_PATH when
+ installing. (garvinhicking)
+
Version 0.8.4 (August 19th, 2005)
------------------------------------------------------------------------
serendipity_die(sprintf(SERENDIPITY_NOT_INSTALLED, 'serendipity_admin.php'));
}
+// Check whether local or global PEAR should be used. You can put a
+// $serendipity['use_PEAR'] = true;
+// in your serendipity_config_local.inc.php file to enable this.
+// The required PEAR (and other) packages are mentioned in the file
+// bundled-libs/.current_version
+$old_include = @ini_get('include_path');
+if (@ini_set('include_path', $old_include . PATH_SEPARATOR . $serendipity['serendipityPath'] . PATH_SEPARATOR . $serendipity['serendipityPath'] . 'bundled-libs/') && $serendipity['use_PEAR']) {
+ @define('S9Y_PEAR', true);
+ @define('S9Y_PEAR_PATH', '');
+} else {
+ @define('S9Y_PEAR', false);
+ @define('S9Y_PEAR_PATH', S9Y_INCLUDE_PATH . 'bundled-libs/');
+}
+
if (defined('IN_installer') && IS_installed === false) {
$serendipity['lang'] = $serendipity['autolang'];
$css_mode = 'serendipity_admin.css';
define('IS_up2date', version_compare($serendipity['version'], $serendipity['versionInstalled'], '<='));
-// Check whether local or global PEAR should be used. You can put a
-// $serendipity['use_PEAR'] = true;
-// in your serendipity_config_local.inc.php file to enable this.
-// The required PEAR (and other) packages are mentioned in the file
-// bundled-libs/.current_version
-$old_include = @ini_get('include_path');
-if (@ini_set('include_path', $old_include . PATH_SEPARATOR . $serendipity['serendipityPath'] . PATH_SEPARATOR . $serendipity['serendipityPath'] . 'bundled-libs/') && $serendipity['use_PEAR']) {
- @define('S9Y_PEAR', true);
- @define('S9Y_PEAR_PATH', '');
-} else {
- @define('S9Y_PEAR', false);
- @define('S9Y_PEAR_PATH', S9Y_INCLUDE_PATH . 'bundled-libs/');
-}
-
/*
* Include main functions
*/