diff --git a/www/admin.php b/www/admin.php index 2c648fb..5a826cc 100644 --- a/www/admin.php +++ b/www/admin.php @@ -221,7 +221,7 @@ exit; EDIT IDENTITY ───────────────────────────── */ if ($action === 'identity_edit') { - + //TODO je nach typ des feldes soll auch das datenfeld getauscht werden, einzeilit input mehrzeilig textarea usw $id = (int)($_GET['id'] ?? 0); $identity = $sql->single( @@ -409,7 +409,7 @@ if ($action === 'uuid_create') { EDIT UUID ───────────────────────────── */ if ($action === 'uuid_edit') { - + //TODO es fehlt die auswahl welche felder sichtbar sein sollen. $uuid = $_GET['uuid'] ?? ''; $token = $sql->single( @@ -562,3 +562,6 @@ $identities = $sql->get("SELECT * FROM identities ORDER BY id DESC");