1
0

Hide smtp password details with a password input box.

This commit is contained in:
rWatcher 2011-04-25 18:49:37 -04:00
parent 5cd1fc9d03
commit 9ae209c27d
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ class Admin_PHPMailer_Controller extends Admin_Controller {
$phpmailerSMTP->input("phpmailer_smtp_login")
->label(t("SMTP Login Name"))
->value(module::get_var("phpmailer", "smtp_login"));
$phpmailerSMTP->input("phpmailer_smtp_password")
$phpmailerSMTP->password("phpmailer_smtp_password")
->label(t("SMTP Password"))
->value(module::get_var("phpmailer", "smtp_password"));

View File

@ -80,7 +80,7 @@ class Admin_PHPMailer_Controller extends Admin_Controller {
$phpmailerSMTP->input("phpmailer_smtp_login")
->label(t("SMTP Login Name"))
->value(module::get_var("phpmailer", "smtp_login"));
$phpmailerSMTP->input("phpmailer_smtp_password")
$phpmailerSMTP->password("phpmailer_smtp_password")
->label(t("SMTP Password"))
->value(module::get_var("phpmailer", "smtp_password"));