Browse Source

Fix "NoRecording" get_lang

jmontoyaa 7 years ago
parent
commit
919a41b37c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      plugin/bbb/lib/bbb.lib.php

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

@@ -806,7 +806,7 @@ class bbb
                         $record['playbackFormatUrl'],
                         ['target' => '_blank']
                     )
-                    : get_lang('NoRecording');
+                    : $this->plugin->get_lang('NoRecording');
 
                 if ($isAdminReport) {
                     $this->forceCIdReq(
@@ -831,7 +831,7 @@ class bbb
                     $isAdminReport
                 );
 
-                $item['show_links'] = get_lang('NoRecording');
+                $item['show_links'] = $this->plugin->get_lang('NoRecording');
             }
 
             $item['action_links'] = implode(PHP_EOL, $actionLinks);