Skip to content

Commit

Permalink
Updates to the strings used in settings
Browse files Browse the repository at this point in the history
  • Loading branch information
jfederico committed Dec 7, 2023
1 parent 186c23f commit 0fdfac4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions classes/bigbluebuttonbn/mod_form_addons.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ public function definition_after_data() {
* Add new form field definition
*/
public function add_fields(): void {
$this->mform->addElement('header', 'flexurl', get_string('settings', 'bbbext_flexurl'));
$this->mform->addHelpButton('flexurl', 'settings', 'bbbext_flexurl');
$this->mform->addElement('header', 'flexurl', get_string('formname', 'bbbext_flexurl'));
$this->mform->addHelpButton('flexurl', 'formname', 'bbbext_flexurl');
$paramcount = optional_param('flexurl_paramcount', $this->bigbluebuttonbndata->flexurl_paramcount ?? 0, PARAM_RAW);
$paramcount += optional_param('flexurl_addparamgroup', 0, PARAM_RAW) ? 1 : 0;
$isdeleting = optional_param_array('flexurl_paramdelete', [], PARAM_RAW);
Expand Down
4 changes: 2 additions & 2 deletions lang/en/bbbext_flexurl.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
$string['param_value'] = 'Parameter value';
$string['param_eventtype'] = 'Parameter event type';
$string['addparamgroup'] = 'Add a new parameter';
$string['settings'] = 'Extra parameters';
$string['settings_help'] = 'The keys and values added in this section are sent to BigBlueButton as \'extra parameters\' when the room is created or the user joins the meeting.';
$string['formname'] = 'Extra parameters';
$string['formname_help'] = 'The keys and values added in this section are sent to BigBlueButton as \'extra parameters\' when the room is created or the user joins the meeting.';

0 comments on commit 0fdfac4

Please sign in to comment.