diff --git a/partials/landing/account/dashboard.php b/partials/landing/account/dashboard.php index 3ec71a7..9d1f427 100755 --- a/partials/landing/account/dashboard.php +++ b/partials/landing/account/dashboard.php @@ -1263,7 +1263,7 @@ if (!empty($canManageSystemSettings)) {

Neue Orte und Veranstaltungen werden erst nach Prüfung durch einen Admin freigegeben.

-
> +
@@ -1273,7 +1273,7 @@ if (!empty($canManageSystemSettings)) {
-
> +
@@ -1521,6 +1521,11 @@ if (!empty($canManageSystemSettings)) { function setSectionState(element, visible) { if (!element) return; element.hidden = !visible; + if (visible) { + element.style.removeProperty('display'); + } else { + element.style.display = 'none'; + } element.querySelectorAll('input, select, textarea, button').forEach((field) => { if (field.type === 'hidden') return; field.disabled = !visible;