Browse Source

Remove E_NOTICE when getting videoconference list - refs BT#11636

Angel Fernando Quiroz Campos 8 years ago
parent
commit
c0c25950c5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugin/bbb/lib/bbb.lib.php

+ 1 - 1
plugin/bbb/lib/bbb.lib.php

@@ -665,7 +665,7 @@ class bbb
                     $record['playbackFormatUrl'] = $meetingDB['video_url'];
                 }
 
-                $recordLink = $record['playbackFormatUrl']
+                $recordLink = isset($record['playbackFormatUrl']) && !empty($record['playbackFormatUrl'])
                     ? Display::url(
                         $this->plugin->get_lang('ViewRecord'),
                         $record['playbackFormatUrl'],