Skip to content

Commit

Permalink
fix: fix user signup for reals this time (#1170)
Browse files Browse the repository at this point in the history
  • Loading branch information
ashhhleyyy authored Sep 15, 2024
1 parent ba3639d commit f8e9cf7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/Classes/ServiceAPI/MyRadio_User.php
Original file line number Diff line number Diff line change
Expand Up @@ -2108,7 +2108,6 @@ public function activateMemberThisYear($paid = 0)
* Creates a new User, or activates a user, if it already exists.
*
* @param string $fname The User's first name.
* @param string $nname The User's nick name.
* @param string $sname The User's last name.
* @param string $eduroam The User's @york.ac.uk address.
* @param int $collegeid The User's college.
Expand All @@ -2123,7 +2122,6 @@ public function activateMemberThisYear($paid = 0)
*/
public static function createOrActivate(
$fname,
$nname,
$sname,
$eduroam = null,
$collegeid = null,
Expand All @@ -2143,7 +2141,6 @@ public static function createOrActivate(
} else {
$data = [
'fname' => $fname,
'nname' => $nname,
'sname' => $sname,
'eduroam' => $eduroam,
'collegeid' => $collegeid,
Expand All @@ -2170,7 +2167,6 @@ public static function createOrActivate(
*/
public static function createActivateAPI(
$fname,
$nname,
$sname,
$captcha,
$eduroam = null,
Expand Down

0 comments on commit f8e9cf7

Please sign in to comment.