Skip to content

Commit

Permalink
fix: do not require nickname on signup
Browse files Browse the repository at this point in the history
  • Loading branch information
ashhhleyyy committed Sep 15, 2024
1 parent d85b0ae commit ba3639d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Classes/ServiceAPI/MyRadio_User.php
Original file line number Diff line number Diff line change
Expand Up @@ -2015,12 +2015,11 @@ public static function create($params)

//Actually create the member!
$r = self::$db->fetchColumn(
'INSERT INTO public.member (fname, nname, sname, college, phone,
'INSERT INTO public.member (fname, sname, college, phone,
email, receive_email, eduroam, require_password_change)
VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9) RETURNING memberid',
VALUES ($1, $2, $3, $4, $5, $6, $7, $8) RETURNING memberid',
[
$params['fname'],
$params['nname'],
$params['sname'],
$params['collegeid'],
$params['phone'],
Expand Down

0 comments on commit ba3639d

Please sign in to comment.