more edl work

This commit is contained in:
Sundog Jones 2024-09-17 08:55:08 -04:00
parent dcb4d2623c
commit 8df2282d32
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if (isset($_REQUEST['media_id']) && $_REQUEST['media_id'] !== "") {
} else {
// insert
$update_query = $db->prepare("INSERT INTO media_edls (media_id, edl_name, edl_definition) VALUES (:media_id, :edl_name, :edl_definition)");
$update_query->bindValue(':media_id', $_REQUEST['id']);
$update_query->bindValue(':media_id', $_REQUEST['media_id']);
$update_query->bindValue(':edl_name', $_REQUEST['edl_name']);
$update_query->bindValue(':edl_definition', $_REQUEST['edl_definition']);
}