Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25401
Modified Files:
serendipity_config.inc.php
Log Message:
The entrycat table needs a key, or else the fetchEntries() function will
perform extremely slowly. On my blog with 390 entries the query was taking
12 seconds, which is now reduced to about 0.8 seconds...
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -d -r1.79 -r1.80
--- serendipity_config.inc.php 17 Jun 2004 20:13:48 -0000 1.79
+++ serendipity_config.inc.php 18 Jun 2004 09:04:24 -0000 1.80
@@ -14,7 +14,7 @@
}
include_once(S9Y_INCLUDE_PATH . 'compat.php');
-$serendipity['version'] = '0.6.5-CVS';
+$serendipity['version'] = '0.6.6-CVS';
$serendipity['production'] = 1;
$serendipity['rewrite'] = 'none';
$serendipity['messagestack'] = array();
|