ALLE BILDER ÄLTER ALS 7 TAGE LÖSCHEN

function sendToChat(fileName) { const imageUrl = "userpic/" + encodeURIComponent(fileName); const imgCode = "[img]" + imageUrl + "[/img]"; const chatInput = window.parent.document.getElementById("message"); const sendButton = window.parent.document.getElementById("link_sagen"); if (chatInput && sendButton) { chatInput.value += imgCode; sendButton.click(); window.close(); } else { alert("Chat nicht gefunden."); } } function deleteImage(name) { if (!confirm("Wirklich löschen?")) return; const data = new URLSearchParams(); data.append("delete", name); data.append("csrf_token", "{$vari2}"); fetch("", { method: "POST", body: data, headers: { "Content-Type": "application/x-www-form-urlencoded" } }) .then(r => r.ok ? location.reload() : alert("Fehler beim Löschen")); } JS; $pageTitle = 'Gallery verwalten ('.$vari4.' Bilder)'; $backLink = './?AdminIndex'; $footerNote = ''; include __DIR__ . '/admin_master_template.php';