From 16c709a0a37722b4ab74d53c76d26f259c60cc48 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Jacob?= Date: Sat, 3 Jul 2010 01:11:25 +0200 Subject: [PATCH] Fixes call to a non existing function during registration. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Stéphane Jacob --- modules/register/register.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.1.4