Completed
Push — master ( 2cf02e...c7d8b1 )
by Jesus
33:46 queued 27:08
created
lib.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
  * Remove this block when restored
65 65
  */
66 66
 
67
- /** @var BIGBLUEBUTTONBN_DEFAULT_SERVER_URL string of default bigbluebutton server url */
67
+    /** @var BIGBLUEBUTTONBN_DEFAULT_SERVER_URL string of default bigbluebutton server url */
68 68
 const BIGBLUEBUTTONBN_DEFAULT_SERVER_URL = 'http://test-install.blindsidenetworks.com/bigbluebutton/';
69 69
 /** @var BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET string of default bigbluebutton server shared secret */
70 70
 const BIGBLUEBUTTONBN_DEFAULT_SHARED_SECRET = '8cd8ef52e8e101574e400365b55e11a6';
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
     $sql = "SELECT COUNT(*) FROM {bigbluebuttonbn_logs} ";
368 368
     $sql .= "WHERE courseid = ? AND bigbluebuttonbnid = ? AND userid = ? AND (log = ? OR log = ?)";
369 369
     $result = $DB->count_records_sql($sql, array($course->id, $bigbluebuttonbn->id, $user->id,
370
-                                              BIGBLUEBUTTONBN_LOG_EVENT_JOIN, BIGBLUEBUTTONBN_LOG_EVENT_PLAYED));
370
+                                                BIGBLUEBUTTONBN_LOG_EVENT_JOIN, BIGBLUEBUTTONBN_LOG_EVENT_PLAYED));
371 371
     return $result;
372 372
 }
373 373
 
@@ -598,12 +598,12 @@  discard block
 block discarded – undo
598 598
     $str  = '<div class="bigbluebuttonbn overview">'."\n";
599 599
     $str .= '  <div class="name">'.get_string('modulename', 'bigbluebuttonbn').':&nbsp;'."\n";
600 600
     $str .= '    <a '.$classes.'href="'.$CFG->wwwroot.'/mod/bigbluebuttonbn/view.php?id='.$bigbluebuttonbn->coursemodule.
601
-      '">'.$bigbluebuttonbn->name.'</a>'."\n";
601
+        '">'.$bigbluebuttonbn->name.'</a>'."\n";
602 602
     $str .= '  </div>'."\n";
603 603
     $str .= '  <div class="info">'.get_string($start, 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->openingtime).
604 604
         '</div>'."\n";
605 605
     $str .= '  <div class="info">'.get_string('ends_at', 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->closingtime)
606
-      .'</div>'."\n";
606
+        .'</div>'."\n";
607 607
     $str .= '</div>'."\n";
608 608
     return $str;
609 609
 }
@@ -845,7 +845,7 @@  discard block
 block discarded – undo
845 845
             'bigbluebuttonbn',
846 846
             $bigbluebuttonbn->id,
847 847
             $bigbluebuttonbn->completionexpected
848
-          );
848
+            );
849 849
     }
850 850
 }
851 851
 
Please login to merge, or discard this patch.