fix another typo

This commit is contained in:
Bruno Rybársky 2023-06-12 14:53:06 +02:00
parent c26a0d6b8f
commit 946a593f62
No known key found for this signature in database
GPG Key ID: DFE2C061EF985CD4

@ -81,7 +81,7 @@ if (!empty($action) && $_SESSION["password"] == $config["admin_pwd"]){
$stmt9 = $mysqli->prepare("UPDATE Links SET `LinkID` = ?, `ContentID` = ?, `Nickname` = ? WHERE `LinkID` = ?;"); $stmt9 = $mysqli->prepare("UPDATE Links SET `LinkID` = ?, `ContentID` = ?, `Nickname` = ? WHERE `LinkID` = ?;");
$stmt9->bind_param('ssss', $_POST["id"], $_POST["contentid"], $_POST["nickname"], $_POST["idwhere"]); $stmt9->bind_param('ssss', $_POST["id"], $_POST["contentid"], $_POST["nickname"], $_POST["idwhere"]);
$stmt9->execute(); $stmt9->execute();
$stmt8->store_result(); $stmt9->store_result();
} }
if ($action == "setcontent" && !empty($_POST["id"]) && !empty($_POST["content"]) && !empty($_POST["idwhere"])){ if ($action == "setcontent" && !empty($_POST["id"]) && !empty($_POST["content"]) && !empty($_POST["idwhere"])){