diff options
Diffstat (limited to 'includes/pages/guest_login.php')
-rw-r--r-- | includes/pages/guest_login.php | 6 |
1 files changed, 6 insertions, 0 deletions
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; |