Skip to content

Commit

Permalink
Merge pull request #9 from ssj365/CONTRIB-9463
Browse files Browse the repository at this point in the history
CONTRIB-9463: Fix option mismatch
  • Loading branch information
ssj365 authored Jun 10, 2024
2 parents 4019c2f + 7f380bd commit 32f09a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions classes/utils.php
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ function($field) {
*/
public static function get_option_for_eventtype() {
return [
self::ACTION_CODES['create'] => get_string('event_join', 'bbbext_flexurl'),
self::ACTION_CODES['join'] => get_string('event_create', 'bbbext_flexurl'),
self::ACTION_CODES['create'] => get_string('event_create', 'bbbext_flexurl'),
self::ACTION_CODES['join'] => get_string('event_join', 'bbbext_flexurl'),
self::ACTION_CODES['all'] => get_string('event_all', 'bbbext_flexurl'),
];
}
Expand Down

0 comments on commit 32f09a5

Please sign in to comment.