From 78389fee4fef3df20962d32ace4b5a64e036f355 Mon Sep 17 00:00:00 2001 From: konradSC Date: Mon, 10 Dec 2018 11:55:37 -0500 Subject: [PATCH] Update recordings.php (#3942) Recording Descriptions are very important when using recording slots. They should be displayed on the main page and not relegated to an unremarkable corner of recordings_edit.php. No longer will Descriptions hide in the darkness. Now is the time for Descriptions to come forth into the light and shine brightly as a beacon of hope for all superusers and admins that seek their aid. --- app/recordings/recordings.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/app/recordings/recordings.php b/app/recordings/recordings.php index 8d51a2ac40..8ad0da2fc7 100644 --- a/app/recordings/recordings.php +++ b/app/recordings/recordings.php @@ -312,11 +312,9 @@ echo "".$text['label-tools']."\n"; if ($_SESSION['recordings']['storage_type']['text'] != 'base64') { echo "".$text['label-file-size']."\n"; - echo "".$text['label-uploaded']."\n"; - } - else { - echo th_order_by('recording_description', $text['label-description'], $order_by, $order); + echo "".$text['label-uploaded']."\n"; } + echo th_order_by('recording_description', $text['label-description'], $order_by, $order); echo " \n"; echo "\n"; @@ -369,11 +367,9 @@ } echo " ".$file_size."\n"; - echo " ".$file_date."\n"; - } - else { - echo " ".escape($row['recording_description'])." \n"; + echo " ".$file_date."\n"; } + echo " ".escape($row['recording_description'])." \n"; echo " "; if (permission_exists('recording_edit')) { echo "$v_link_label_edit";