Skip to content

Commit

Permalink
Add Missing config in workflow threshold page
Browse files Browse the repository at this point in the history
The page lists the 'bug_reminder_threshold' (i.e. access level needed
for users to send reminders) configuration, but does not allow the admin
to set its counterpart 'reminder_receive_threshold'.

Fixes #15360
  • Loading branch information
dregad committed Jan 17, 2013
1 parent 0e2c6b4 commit 8414dc7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions lang/strings_english.txt
Expand Up @@ -1370,6 +1370,7 @@ If you requested this verification, visit the following URL to change your passw
'others' => 'Others', 'others' => 'Others',
'see_email_addresses_of_other_users' => 'See e-mail addresses of other users', 'see_email_addresses_of_other_users' => 'See e-mail addresses of other users',
'send_reminders' => 'Send reminders', 'send_reminders' => 'Send reminders',
'receive_reminders' => 'Receive reminders',
'add_profiles' => 'Add profiles', 'add_profiles' => 'Add profiles',
'notify_of_new_user_created' => 'Notify of new user created', 'notify_of_new_user_created' => 'Notify of new user created',
'email_notification' => 'E-mail notification', 'email_notification' => 'E-mail notification',
Expand Down
1 change: 1 addition & 0 deletions manage_config_work_threshold_page.php
Expand Up @@ -338,6 +338,7 @@ function get_section_end() {
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'assigned_to' ), 'view_handler_threshold' ); get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'assigned_to' ), 'view_handler_threshold' );
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'bug_history' ), 'view_history_threshold' ); get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'bug_history' ), 'view_history_threshold' );
get_capability_row( lang_get( 'send_reminders' ), 'bug_reminder_threshold' ); get_capability_row( lang_get( 'send_reminders' ), 'bug_reminder_threshold' );
get_capability_row( lang_get( 'receive_reminders' ), 'reminder_receive_threshold' );
get_section_end(); get_section_end();




Expand Down

0 comments on commit 8414dc7

Please sign in to comment.