Update of /cvsroot/php-blog/serendipity/include
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3377/include
Modified Files:
functions_installer.inc.php
Log Message:
When creating a new user, DO parse the default settings.
Had to modify a central piece of logic which may affect installer (but shouldn't). Tom, can you check? I see no reason to also check for IS_installed because there $from is also empty?!
Index: functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/include/functions_installer.inc.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- functions_installer.inc.php 26 Dec 2004 19:00:49 -0000 1.23
+++ functions_installer.inc.php 2 Jan 2005 16:10:58 -0000 1.24
@@ -346,7 +346,7 @@
$value = $from[$item['var']];
/* Calculate value if we are not installed, how clever :) */
- if ( IS_installed === false && $from == false ) {
+ if ($from == false) {
$value = serendipity_query_default($item['var'], $item['default']);
}
|