From 5ae3f2530c62b0c04acf611e2d146ff8bc33f43e Mon Sep 17 00:00:00 2001 From: Jan BELLON Date: Thu, 7 Mar 2024 20:57:45 +0000 Subject: [PATCH] Update 2 files - /html/journal.php - /html/editpage.php --- html/editpage.php | 2 +- html/journal.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/html/editpage.php b/html/editpage.php index 00b253a3..0c3cf22d 100644 --- a/html/editpage.php +++ b/html/editpage.php @@ -128,7 +128,7 @@ if(isset($fichier)) { if ($resultat) { foreach($resultat as $row) { - echo "

" . $row['titre'] . "

Classification : " . $classifications[$row['classificaation']] . "

" . $row['auteur'] . "

" . $date->format('d/m/Y') . "
"; + echo "

" . $row['titre'] . "

" . $row['auteur'] . "

Classification : " . $classifications[$row['classification']] . "
" . $date->format('d/m/Y') . "
"; } } echo ""; diff --git a/html/journal.php b/html/journal.php index 7d7505b0..071d1f48 100644 --- a/html/journal.php +++ b/html/journal.php @@ -64,7 +64,7 @@ if (filter_var($_GET['article'], FILTER_VALIDATE_INT)) { if ($resultat) { foreach($resultat as $row) { - echo "

" . $row['titre'] . "

Classification : " . $classifications[$row['classificaation']] . "

" . $row['auteur'] . "

" . $date->format('d/m/Y') . "
"; + echo "

" . $row['titre'] . "

" . $row['auteur'] . "

Classification : " . $classifications[$row['classification']] . "
" . $date->format('d/m/Y') . "
"; } } }