Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 75dd763

Browse files
committedJan 17, 2013
Add Missing config in workflow threshold page
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
1 parent 6302ae2 commit 75dd763

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed
 

‎lang/strings_english.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1455,6 +1455,7 @@ $s_handle_sponsored_issue = 'Handle sponsored issue';
14551455
$s_others = 'Others';
14561456
$s_see_email_addresses_of_other_users = 'See e-mail addresses of other users';
14571457
$s_send_reminders = 'Send reminders';
1458+
$s_receive_reminders = 'Receive reminders';
14581459
$s_add_profiles = 'Add profiles';
14591460
$s_notify_of_new_user_created = 'Notify of new user created';
14601461
$s_email_notification = 'E-mail notification';

‎manage_config_work_threshold_page.php

+1
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ function get_section_end() {
312312
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'assigned_to' ), 'view_handler_threshold' );
313313
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'bug_history' ), 'view_history_threshold' );
314314
get_capability_row( lang_get( 'send_reminders' ), 'bug_reminder_threshold' );
315+
get_capability_row( lang_get( 'receive_reminders' ), 'reminder_receive_threshold' );
315316
get_section_end();
316317

317318

0 commit comments

Comments
 (0)
Please sign in to comment.