From 34c52b8eb9bf0acaeadff0eee579c5fd79609218 Mon Sep 17 00:00:00 2001 From: saintly2k <95925333+kaligula-eu@users.noreply.github.com> Date: Sun, 10 Jul 2022 03:30:38 +0200 Subject: [PATCH] [TYP-200] fix not being able to bookmark on manga page --- render/public/manga.req.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/render/public/manga.req.php b/render/public/manga.req.php index b3d8544..8cd9613 100644 --- a/render/public/manga.req.php +++ b/render/public/manga.req.php @@ -4,8 +4,6 @@ require("../../requires.php"); //$page = $lang["menu"]["home"]; -include("../parts/header.php"); - $slug = mysqli_real_escape_string($conn, $_GET["slug"]); $manga = $conn->query("SELECT * FROM `titles` WHERE `slug`='$slug' LIMIT 1"); $manga = mysqli_fetch_assoc($manga); @@ -74,6 +72,8 @@ if(isset($_POST["remove_bookmark"])) { } } +include("../parts/header.php"); + ?>