Skip to content

Commit

Permalink
Fixes #9882: Unknown unit for redirect and refresh delay.
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Boctor committed Nov 26, 2008
1 parent 9196320 commit 37ca1e4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions account_prefs_inc.php
Expand Up @@ -112,15 +112,15 @@ function edit_account_prefs($p_user_id = null, $p_error_if_protected = true, $p_
<?php echo lang_get( 'refresh_delay' ) ?>
</td>
<td>
<input type="text" name="refresh_delay" size="4" maxlength="4" value="<?php echo $t_pref->refresh_delay ?>" />
<input type="text" name="refresh_delay" size="4" maxlength="4" value="<?php echo $t_pref->refresh_delay ?>" /> <?php echo lang_get( 'minutes' ) ?>
</td>
</tr>
<tr class="row-2">
<td class="category">
<?php echo lang_get( 'redirect_delay' ) ?>
</td>
<td>
<input type="text" name="redirect_delay" size="1" maxlength="1" value="<?php echo $t_pref->redirect_delay ?>" />
<input type="text" name="redirect_delay" size="4" maxlength="1" value="<?php echo $t_pref->redirect_delay ?>" /> <?php echo lang_get( 'seconds' ) ?>
</td>
</tr>
<tr class="row-1">
Expand Down
2 changes: 1 addition & 1 deletion docbook/adminguide/en/configuration.sgml
Expand Up @@ -1090,7 +1090,7 @@
<term>$g_min_refresh_delay</term>
<listitem>
<para>This is the delay between automatic refreshes of the View
Issues page. Make sure refresh delay in user preferences isn't too
Issues page in minutes. Make sure refresh delay in user preferences isn't too
short. If a users set their preferences to be lower then it is
bumped back up to this minimum value. The default value is 10
minutes.
Expand Down
2 changes: 2 additions & 0 deletions lang/strings_english.txt
Expand Up @@ -450,7 +450,9 @@ $s_advanced_report = 'Advanced Report';
$s_advanced_view = 'Advanced View';
$s_advanced_update = 'Advanced Update';
$s_refresh_delay = 'Refresh Delay';
$s_minutes = 'minutes';
$s_redirect_delay = 'Redirect Delay';
$s_seconds = 'seconds';
$s_with_minimum_severity = 'With Minimum Severity of';
$s_bugnote_order = 'Notes Sort Order';
$s_bugnote_order_asc = 'Ascending';
Expand Down

0 comments on commit 37ca1e4

Please sign in to comment.