Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10943
Modified Files:
serendipity_config.inc.php
Log Message:
Rewrote how s9y fetches external plugins: The path setting is now irrelevant,
only filenames count. They can be placed in any subdirectory as long as their
name matches *_(plugin|event)_*.php. This allows plugin authors to put one
ore more event/sidebar plugin into one bundled directory and reduces swamping
the plugins directory.
Needed to adjust several calls, but it seems to work well.
Requires DB scheme update.
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -d -r1.108 -r1.109
--- serendipity_config.inc.php 3 Dec 2004 10:07:37 -0000 1.108
+++ serendipity_config.inc.php 6 Dec 2004 10:46:30 -0000 1.109
@@ -15,7 +15,7 @@
include_once(S9Y_INCLUDE_PATH . 'include/compat.inc.php');
-$serendipity['version'] = '0.8-alpha5';
+$serendipity['version'] = '0.8-alpha6';
$serendipity['defaultTemplate'] = 'default'; // Name of folder for the default theme
$serendipity['production'] = true; // Setting this to 'false' will enable debugging output
$serendipity['rewrite'] = 'none';
|