Passed
Push — 1.10.x ( 1e0098...81fffe )
by Angel Fernando Quiroz
40:38
created
plugin/bbb/admin.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
 $course_plugin = 'bbb'; //needed in order to load the plugin lang variables
10 10
 $cidReset = true;
11 11
 
12
-require_once __DIR__ . '/../../main/inc/global.inc.php';
12
+require_once __DIR__.'/../../main/inc/global.inc.php';
13 13
 
14 14
 api_protect_admin_script();
15 15
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
         /** @var User $participant */
48 48
         $participant = $meetingParticipant['participant'];
49 49
         $meeting['participants'][] = $participant->getCompleteName()
50
-            . ' (' . $participant->getEmail() . ')';
50
+            . ' ('.$participant->getEmail().')';
51 51
     }
52 52
 }
53 53
 
@@ -94,9 +94,9 @@  discard block
 block discarded – undo
94 94
 }
95 95
 
96 96
 $htmlHeadXtra[] = api_get_js_simple(
97
-    api_get_path(WEB_PLUGIN_PATH) . 'bbb/resources/utils.js'
97
+    api_get_path(WEB_PLUGIN_PATH).'bbb/resources/utils.js'
98 98
 );
99
-$htmlHeadXtra[] = "<script>var _p = {web_plugin: '" . api_get_path(WEB_PLUGIN_PATH). "'}</script>";
99
+$htmlHeadXtra[] = "<script>var _p = {web_plugin: '".api_get_path(WEB_PLUGIN_PATH)."'}</script>";
100 100
 
101 101
 $tpl = new Template($tool_name);
102 102
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 if ($meetings) {
109 109
     $actions[] = Display::toolbarButton(
110 110
         get_lang('ExportInExcel'),
111
-        api_get_self() . '?action=export',
111
+        api_get_self().'?action=export',
112 112
         'file-excel-o',
113 113
         'success'
114 114
     );
Please login to merge, or discard this patch.