From 278dc8e5b0c3830e661fd8297a65e71a66eed4ce Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 26 Dec 2011 16:25:39 +0100 Subject: changed angel types table layout --- includes/pages/guest_login.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'includes/pages/guest_login.php') diff --git a/includes/pages/guest_login.php b/includes/pages/guest_login.php index a210a7ce..afcc2cf5 100644 --- a/includes/pages/guest_login.php +++ b/includes/pages/guest_login.php @@ -20,6 +20,12 @@ function guest_register() { $comment = ""; $tshirt_size = 'S'; $password_hash = ""; + $selected_angel_types = array (); + + $angel_types_source = sql_select("SELECT * FROM `AngelTypes` ORDER BY `name`"); + $angel_types = array (); + foreach ($angel_types_source as $angel_type) + $angel_types[$angel_type['id']] = $angel_type['name'] . ($angel_type['restricted'] ? " (restricted)" : ""); if (isset ($_REQUEST['submit'])) { $ok = true; -- cgit v1.2.3-54-g00ecf