Skip to content
Snippets Groups Projects
Commit e21d6d9a authored by Jared Hancock's avatar Jared Hancock Committed by Peter Rotich
Browse files

help: Fixup wording on password expiration policy

parent 64448ec5
No related branches found
No related tags found
No related merge requests found
...@@ -65,15 +65,16 @@ name_format: ...@@ -65,15 +65,16 @@ name_format:
title: Default Name Format title: Default Name Format
content: > content: >
Formatting technique used to format names throughout the system. Formatting technique used to format names throughout the system.
Email templates will use the format for names of no other format is Email templates will use the format for names if no other format is
specified in the place holder. specified in the place holder.
# Authentication settings # Authentication settings
password_reset: password_reset:
title: Password Expiration Policy title: Password Expiration Policy
content: > content: >
Sets the requirement for how often (in months) staff will be Sets how often (in months) staff members will be required to change
required to reset their password. their password. If disabled (set to "No expiration"), passwords will
not expire.
# Date and time options # Date and time options
date_and_time: date_and_time:
......
...@@ -123,10 +123,10 @@ $gmtime = Misc::gmtime(); ...@@ -123,10 +123,10 @@ $gmtime = Misc::gmtime();
<em><b>Authentication Settings</b></em> <em><b>Authentication Settings</b></em>
</th> </th>
</tr> </tr>
<tr><td>Password Change Policy:</th> <tr><td>Password Expiration Policy:</th>
<td> <td>
<select name="passwd_reset_period"> <select name="passwd_reset_period">
<option value="0"> &mdash; None &mdash;</option> <option value="0"> &mdash; No expiration &mdash;</option>
<?php <?php
for ($i = 1; $i <= 12; $i++) { for ($i = 1; $i <= 12; $i++) {
echo sprintf('<option value="%d" %s>%s%s</option>', echo sprintf('<option value="%d" %s>%s%s</option>',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment