Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22075
Modified Files:
serendipity_functions_installer.inc.php
Log Message:
Don't hide default password if we are not installed
Index: serendipity_functions_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions_installer.inc.php,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -d -r1.32 -r1.33
--- serendipity_functions_installer.inc.php 25 Aug 2004 21:50:05 -0000 1.32
+++ serendipity_functions_installer.inc.php 28 Aug 2004 15:14:52 -0000 1.33
@@ -53,7 +53,7 @@
global $serendipity;
/* I won't tell you the password, it's MD5 anyway, you can't do anything with it */
- if ( $type == 'protected' ) {
+ if ( $type == 'protected' && IS_installed === true ) {
return '';
}
|