Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3205
Modified Files:
serendipity_config_local.tpl NEWS
Log Message:
Changed type of DB password to 'protected' to avoid it being displayed a plaintext
Index: serendipity_config_local.tpl
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config_local.tpl,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- serendipity_config_local.tpl 14 Feb 2004 18:22:22 -0000 1.31
+++ serendipity_config_local.tpl 14 Feb 2004 18:35:31 -0000 1.32
@@ -5,7 +5,7 @@
$serendipity['dbType'] = '{Database type|dbType|string|mysql}'; // Database type (mysql|postgres)
$serendipity['dbHost'] = '{Database host|dbHost|string|localhost}'; // MySQL host
$serendipity['dbUser'] = '{Database user|dbUser|string|serendipity}'; // Username
-$serendipity['dbPass'] = '{Database password|dbPass|string|serendipity}'; // Password
+$serendipity['dbPass'] = '{Database password|dbPass|protected|}'; // Password
$serendipity['dbName'] = '{Database name|dbName|string|serendipity}'; // Name of your database
$serendipity['dbPrefix'] = '{Database prefix|dbPrefix|string|serendipity_}'; // Prefix for the table names, i.e. serendipity_
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -d -r1.69 -r1.70
--- NEWS 14 Feb 2004 18:22:22 -0000 1.69
+++ NEWS 14 Feb 2004 18:35:31 -0000 1.70
@@ -2,6 +2,7 @@
Version 0.5.1 ()
------------------------------------
+ * Changed type of DB password to 'protected' to avoid it being displayed a plaintext (tomsommer)
* Added danish language file (tomsommer & Jeppe Lund)
* Added notice when using a wrong username or password to gain access to admin/author suites (tomsommer)
* Added date & time translation using strftime() and setlocale() (tomsommer)
|