@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | defined('MOODLE_INTERNAL') || die(); |
| 29 | 29 | |
| 30 | 30 | require_once($CFG->dirroot . '/mod/bigbluebuttonbn/locallib.php'); |
| 31 | -require_once($CFG->libdir.'/adminlib.php'); |
|
| 31 | +require_once($CFG->libdir . '/adminlib.php'); |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * Helper class for rendering HTML for settings.php. |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | $itemname = get_string('config_' . $name, 'bigbluebuttonbn'); |
| 67 | 67 | } |
| 68 | 68 | if ($itemdescription === null) { |
| 69 | - $itemdescription = get_string('config_' .$name . '_description', 'bigbluebuttonbn'); |
|
| 69 | + $itemdescription = get_string('config_' . $name . '_description', 'bigbluebuttonbn'); |
|
| 70 | 70 | } |
| 71 | 71 | $item = new \admin_setting_heading('bigbluebuttonbn_config_' . $name, $itemname, $itemdescription); |
| 72 | 72 | $this->settings->add($item); |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | */ |
| 167 | 167 | public function render_warning_message($name, $message, $type = 'warning', $closable = true) { |
| 168 | 168 | $output = $this->output->box_start('box boxalignleft adminerror alert alert-' . $type . ' alert-block fade in', |
| 169 | - 'bigbluebuttonbn_' . $name)."\n"; |
|
| 169 | + 'bigbluebuttonbn_' . $name) . "\n"; |
|
| 170 | 170 | if ($closable) { |
| 171 | 171 | $output .= ' <button type="button" class="close" data-dismiss="alert">×</button>' . "\n"; |
| 172 | 172 | } |