From 7871e107e4a9c7870f0a3c5ae64badb3dcd1b78f Mon Sep 17 00:00:00 2001 From: Cedric Date: Tue, 23 Jun 2026 15:03:54 +0200 Subject: [PATCH] Actualiser api.php --- api.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/api.php b/api.php index 01d04eb..edd8e3b 100644 --- a/api.php +++ b/api.php @@ -419,7 +419,9 @@ switch ($action) { if (empty($year) && !empty($tmdbData['year'])) $year = $tmdbData['year']; if (empty($length) && !empty($tmdbData['length'])) $length = $tmdbData['length']; - if (empty($poster) && !empty($tmdbData['poster'])) $poster = $tmdbData['poster']; + + // 👇 LIGNE DÉSACTIVÉE ICI UNIQUEMENT POUR LA VIDÉOTHÈQUE 👇 + // if (empty($poster) && !empty($tmdbData['poster'])) $poster = $tmdbData['poster']; // 🔥 Récupération du Synopsis officiel if (!empty($tmdbData['overview'])) { @@ -431,7 +433,6 @@ switch ($action) { } } } // <--- ✅ Fermeture correcte de if ($tmdbApiKey) - // 🔥 L'INSERT SQL DOIT ÊTRE ICI (EN DEHORS DU IF TMDB) $sql = "INSERT INTO videotheque (id, title, year, director, poster, format, length, publisher, ean_isbn13, number_of_discs, aspect_ratio, description, actors) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE director=IF(VALUES(director)!='',VALUES(director),director), poster=IF(VALUES(poster)!='',VALUES(poster),poster), format=IF(VALUES(format)!='',VALUES(format),format), length=IF(VALUES(length)!='',VALUES(length),length), publisher=IF(VALUES(publisher)!='',VALUES(publisher),publisher), ean_isbn13=IF(VALUES(ean_isbn13)!='',VALUES(ean_isbn13),ean_isbn13), number_of_discs=IF(VALUES(number_of_discs)!=1,VALUES(number_of_discs),number_of_discs), aspect_ratio=IF(VALUES(aspect_ratio)!='',VALUES(aspect_ratio),aspect_ratio), description=IF(VALUES(description)!='',VALUES(description),description), actors=IF(VALUES(actors)!='',VALUES(actors),actors)"; $stmt = $pdo->prepare($sql);