diff --git a/app/conferences_active/app_config.php b/app/conferences_active/app_config.php index f4cee62542..2fe66293f0 100644 --- a/app/conferences_active/app_config.php +++ b/app/conferences_active/app_config.php @@ -42,11 +42,6 @@ $apps[$x]['permissions'][0]['groups'][] = 'admin'; $apps[$x]['permissions'][0]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][1]['name'] = 'conferences_active_record'; - $apps[$x]['permissions'][1]['groups'][] = 'user'; - $apps[$x]['permissions'][1]['groups'][] = 'admin'; - $apps[$x]['permissions'][1]['groups'][] = 'superadmin'; - $apps[$x]['permissions'][2]['name'] = 'conferences_active_lock'; $apps[$x]['permissions'][2]['groups'][] = 'user'; $apps[$x]['permissions'][2]['groups'][] = 'admin'; diff --git a/app/conferences_active/conference_interactive_inc.php b/app/conferences_active/conference_interactive_inc.php index ba6a698f1b..d39a9b1c45 100644 --- a/app/conferences_active/conference_interactive_inc.php +++ b/app/conferences_active/conference_interactive_inc.php @@ -143,21 +143,11 @@ else { $recording_name = $session_uuid.".mp3"; } - if (permission_exists('conferences_active_record')) { - if ($recording == "true") { - echo " ".$text['button-stop-rec']." \n"; - } - else { - echo " ".$text['button-start-rec']." \n"; - } + if ($recording == "true") { + echo " ".$text['label-recording']."  "; } else { - if ($recording == "true") { - echo " ".$text['label-recording']."  "; - } - else { - echo " ".$text['label-not-recording']."  "; - } + echo " ".$text['label-not-recording']."  "; } if (permission_exists('conferences_active_lock')) { if ($locked == "true") {