Skip to content

Commit 8414dc7

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 0e2c6b4 commit 8414dc7

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
@@ -1370,6 +1370,7 @@ If you requested this verification, visit the following URL to change your passw
13701370
'others' => 'Others',
13711371
'see_email_addresses_of_other_users' => 'See e-mail addresses of other users',
13721372
'send_reminders' => 'Send reminders',
1373+
'receive_reminders' => 'Receive reminders',
13731374
'add_profiles' => 'Add profiles',
13741375
'notify_of_new_user_created' => 'Notify of new user created',
13751376
'email_notification' => 'E-mail notification',

‎manage_config_work_threshold_page.php

+1
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,7 @@ function get_section_end() {
338338
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'assigned_to' ), 'view_handler_threshold' );
339339
get_capability_row( lang_get( 'view' ) . ' ' . lang_get( 'bug_history' ), 'view_history_threshold' );
340340
get_capability_row( lang_get( 'send_reminders' ), 'bug_reminder_threshold' );
341+
get_capability_row( lang_get( 'receive_reminders' ), 'reminder_receive_threshold' );
341342
get_section_end();
342343

343344

0 commit comments

Comments
 (0)
Please sign in to comment.