@@ -64,7 +64,7 @@ discard block |
||
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'; |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | $sql = "SELECT COUNT(*) FROM {bigbluebuttonbn_logs} "; |
376 | 376 | $sql .= "WHERE courseid = ? AND bigbluebuttonbnid = ? AND userid = ? AND (log = ? OR log = ?)"; |
377 | 377 | $result = $DB->count_records_sql($sql, array($course->id, $bigbluebuttonbn->id, $user->id, |
378 | - BIGBLUEBUTTONBN_LOG_EVENT_JOIN, BIGBLUEBUTTONBN_LOG_EVENT_PLAYED)); |
|
378 | + BIGBLUEBUTTONBN_LOG_EVENT_JOIN, BIGBLUEBUTTONBN_LOG_EVENT_PLAYED)); |
|
379 | 379 | return $result; |
380 | 380 | } |
381 | 381 | |
@@ -620,12 +620,12 @@ discard block |
||
620 | 620 | $str = '<div class="bigbluebuttonbn overview">'."\n"; |
621 | 621 | $str .= ' <div class="name">'.get_string('modulename', 'bigbluebuttonbn').': '."\n"; |
622 | 622 | $str .= ' <a '.$classes.'href="'.$CFG->wwwroot.'/mod/bigbluebuttonbn/view.php?id='.$bigbluebuttonbn->coursemodule. |
623 | - '">'.$bigbluebuttonbn->name.'</a>'."\n"; |
|
623 | + '">'.$bigbluebuttonbn->name.'</a>'."\n"; |
|
624 | 624 | $str .= ' </div>'."\n"; |
625 | 625 | $str .= ' <div class="info">'.get_string($start, 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->openingtime). |
626 | 626 | '</div>'."\n"; |
627 | 627 | $str .= ' <div class="info">'.get_string('ends_at', 'bigbluebuttonbn').': '.userdate($bigbluebuttonbn->closingtime) |
628 | - .'</div>'."\n"; |
|
628 | + .'</div>'."\n"; |
|
629 | 629 | $str .= '</div>'."\n"; |
630 | 630 | return $str; |
631 | 631 | } |
@@ -877,7 +877,7 @@ discard block |
||
877 | 877 | 'bigbluebuttonbn', |
878 | 878 | $bigbluebuttonbn->id, |
879 | 879 | $bigbluebuttonbn->completionexpected |
880 | - ); |
|
880 | + ); |
|
881 | 881 | } |
882 | 882 | } |
883 | 883 |