Completed
Push — master ( 89162c...ba9e28 )
by Jesus
02:00
created
classes/settings/renderer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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">&times;</button>' . "\n";
172 172
         }
Please login to merge, or discard this patch.