Skip to content

Commit 49e541d

Browse files
committed
2.0.6; closes #4
1 parent 8690700 commit 49e541d

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

code/Module.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ class Module extends FormToolsModule
1818
protected $author = "Ben Keen";
1919
protected $authorEmail = "ben.keen@gmail.com";
2020
protected $authorLink = "https://formtools.org";
21-
protected $version = "2.0.5";
22-
protected $date = "2018-03-18";
21+
protected $version = "2.0.6";
22+
protected $date = "2018-04-17";
2323
protected $originLanguage = "en_us";
2424

2525
protected $nav = array(

lang/en_us.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
$L["text_help"] = "Please see our <a href=\"https://docs.formtools.org/modules/swift_mailer/\" target=\"_blank\">online help documentation</a> for information on how to use this module.";
6161
$L["text_settings_desc"] = "This module enables the <a href=\"http://swiftmailer.org/\" target=\"_blank\">Swift Mailer</a> script to send all Form Tools emails, instead of relying on the default PHP <b>mail()</b> function. Your PHP version is <b>{\$php_version}</b>.";
6262
$L["text_test_desc"] = "Use the form below to confirm the emails are sent with the SMTP settings you have entered.";
63+
$L["text_password_hidden"] = "Password hidden for security reasons. You only need to re-enter the password here if you wish to change it.";
6364

6465
$L["validation_no_recipient_email"] = "Please enter the recipient email address.";
6566
$L["validation_no_sender_email"] = "Please enter the email address of the sender.";

templates/tab_settings.tpl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
{/if}
5555
<input type="password" name="password" id="password" style="width:200px" value=""
5656
{if $sm_settings.requires_authentication == "no"}disabled{/if} />
57+
{if $sm_settings.password}
58+
<div class="medium_grey">{$L.text_password_hidden}</div>
59+
{/if}
5760
</td>
5861
</tr>
5962
<tr>

0 commit comments

Comments
 (0)