From ab7d3a9c5a844881b3a4f933992f34da07e426d8 Mon Sep 17 00:00:00 2001 From: Sundog Date: Tue, 17 Sep 2024 08:57:59 -0400 Subject: [PATCH] more edl work --- edl.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edl.php b/edl.php index 46fc4bc..b1bd42f 100755 --- a/edl.php +++ b/edl.php @@ -31,7 +31,7 @@ if (isset($_REQUEST['media_id']) && $_REQUEST['media_id'] !== "") { error_log($update_query->getSQL(true)); $update_result = $update_query->execute(); if ($update_result) { - $query = $db->prepare("SELECT * FROM media m JOIN media_edls em ON m.id = me.media_id WHERE m.id = :id"); + $query = $db->prepare("SELECT * FROM media m JOIN media_edls me ON m.id = me.media_id WHERE m.id = :id"); $query->bindValue(':id', $id); $final_result = $query->execute(); if ($final_result) {