summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-11 07:20:03 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-05-11 07:20:03 +0000
commit9afe458f5353c99b834cc734e511c6fc137af33a (patch)
treea09a4f93e4909ad560c1cdae4256a5ac91561d65
parentb72e8ab0ceccc8bd855f96e91d4c8c6cfd54fa7d (diff)
- Make password input fields of type password in installer (#1484886)
git-svn-id: https://svn.roundcube.net/trunk@1375 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/CHANGELOG3
-rw-r--r--roundcubemail/installer/config.php4
2 files changed, 5 insertions, 2 deletions
diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG
index 286fa89da..7d4c81c42 100644
--- a/roundcubemail/CHANGELOG
+++ b/roundcubemail/CHANGELOG
@@ -1,6 +1,9 @@
CHANGELOG RoundCube Webmail
---------------------------
+2008/05/10 (alec)
+- Make password input fields of type password in installer (#1484886)
+
2008/05/09 (alec)
- Don't call CAPABILITY if was recieved as server's optional response
on connect (RFC3501 [7.1])
diff --git a/roundcubemail/installer/config.php b/roundcubemail/installer/config.php
index d6b5526d9..c257f8131 100644
--- a/roundcubemail/installer/config.php
+++ b/roundcubemail/installer/config.php
@@ -199,7 +199,7 @@ foreach ($supported_dbs AS $database => $ext) {
$input_dbhost = new html_inputfield(array('name' => '_dbhost', 'size' => 20, 'id' => "cfgdbhost"));
$input_dbname = new html_inputfield(array('name' => '_dbname', 'size' => 20, 'id' => "cfgdbname"));
$input_dbuser = new html_inputfield(array('name' => '_dbuser', 'size' => 20, 'id' => "cfgdbuser"));
-$input_dbpass = new html_inputfield(array('name' => '_dbpass', 'size' => 20, 'id' => "cfgdbpass"));
+$input_dbpass = new html_passwordfield(array('name' => '_dbpass', 'size' => 20, 'id' => "cfgdbpass"));
$dsnw = DB::parseDSN($RCI->getprop('db_dsnw'));
@@ -386,7 +386,7 @@ echo $text_smtpport->show($RCI->getprop('smtp_port'));
<?php
$text_smtpuser = new html_inputfield(array('name' => '_smtp_user', 'size' => 20, 'id' => "cfgsmtpuser"));
-$text_smtppass = new html_inputfield(array('name' => '_smtp_pass', 'size' => 20, 'id' => "cfgsmtppass"));
+$text_smtppass = new html_passwordfield(array('name' => '_smtp_pass', 'size' => 20, 'id' => "cfgsmtppass"));
echo $text_smtpuser->show($RCI->getprop('smtp_user'));
echo $text_smtppass->show($RCI->getprop('smtp_pass'));