From: Stéphane Jacob Date: Fri, 2 Jul 2010 23:11:25 +0000 (+0200) Subject: Fixes call to a non existing function during registration. X-Git-Tag: xorg/1.0.1~15^2~66 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=16c709a0a37722b4ab74d53c76d26f259c60cc48;p=platal.git Fixes call to a non existing function during registration. Signed-off-by: Stéphane Jacob --- diff --git a/modules/register/register.inc.php b/modules/register/register.inc.php index a54b053..afe8d97 100644 --- a/modules/register/register.inc.php +++ b/modules/register/register.inc.php @@ -29,7 +29,7 @@ function checkId(&$subState) } $uf = new UserFilter(new PFC_And( - new UFC_UID($subState->i('xorg_id')), + new UFC_SchoolId('xorg', $subState->i('xorgid')), new PFC_Not(new UFC_Dead()) )); $profile = $uf->getProfile();