From d40f5597e08e99a05f2cdb638bdcf2497770f40f Mon Sep 17 00:00:00 2001 From: Nate Jones Date: Thu, 11 Sep 2014 18:34:53 +0000 Subject: [PATCH] Recordings: Integrated HTML5 playback button. --- app/recordings/recordings.php | 35 +++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 14 deletions(-) diff --git a/app/recordings/recordings.php b/app/recordings/recordings.php index f6e7b4c27d..8561e1f8b0 100644 --- a/app/recordings/recordings.php +++ b/app/recordings/recordings.php @@ -149,13 +149,6 @@ require_once "resources/check_auth.php"; require_once "resources/header.php"; //begin the content - echo ""; - echo "
"; echo "\n"; echo "\n"; @@ -220,13 +213,14 @@ require_once "resources/check_auth.php"; $c = 0; $row_style["0"] = "row_style0"; $row_style["1"] = "row_style1"; + $row_style["2"] = "row_style2"; echo "
\n"; echo "\n"; echo th_order_by('recording_name', $text['label-recording_name'], $order_by, $order); echo th_order_by('recording_filename', $text['label-file_name'], $order_by, $order); echo "\n"; - echo "\n"; + echo "\n"; echo th_order_by('recording_description', $text['label-description'], $order_by, $order); echo "\n"; echo "\n"; @@ -246,13 +240,26 @@ require_once "resources/check_auth.php"; echo $row['recording_filename']; echo " "; echo " \n"; - echo " \n"; - echo " \n"; + echo " \n"; echo " \n"; echo "
".$text['label-tools']."".$text['label-file-size']."".$text['label-file-size']." 
\n"; - echo " ".$tmp_filesize; + if (strlen($row['recording_filename']) > 0) { + echo " "; + echo " "; + } echo " ".$tmp_filesize."".$row['recording_description']." "; if (permission_exists('recording_edit')) {