X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fauth.php;h=1883ab634145c8cbce0395a5596ad90ccc57f116;hb=e23d21c1588a9ffa0697aef08e9ebdada4fe167e;hp=7dfa181f026f964d222713416cc551383a9f2d6e;hpb=0073747ac81cc9cff9e43847eb008f0e815255f0;p=platal.git diff --git a/modules/auth.php b/modules/auth.php index 7dfa181..1883ab6 100644 --- a/modules/auth.php +++ b/modules/auth.php @@ -1,6 +1,6 @@ \n\n\n\n"; - if (S::v('chall') && $_GET['PASS'] == md5(S::v('chall').$cle)) { + if (S::v('chall') && Get::s('PASS') == md5(S::v('chall').$cle)) { $list = new MMList(User::getWithUID(10154), "x-econfiance.polytechnique.org"); $members = $list->get_members('membres'); if (is_array($members)) { @@ -76,7 +76,7 @@ class AuthModule extends PLModule exit; } - function handler_manageurs(&$page) + function handler_manageurs($page) { global $globals; @@ -99,17 +99,17 @@ class AuthModule extends PLModule exit; } - function handler_redirect(&$page) + function handler_redirect($page) { http_redirect(Env::v('dest', '/')); } - function handler_groupex_old(&$page) + function handler_groupex_old($page) { return $this->handler_groupex($page, 'iso-8859-1'); } - function handler_groupex(&$page, $charset = 'utf8') + function handler_groupex($page, $charset = 'utf8') { $this->load('auth.inc.php'); $page->assign('referer', true); @@ -132,7 +132,7 @@ class AuthModule extends PLModule $uid = S::i('uid'); if (!S::suid()) { global $platal; - S::logger($uid)->log('connexion_auth_ext', $platal->path); + S::logger($uid)->log('connexion_auth_ext', $platal->path.' '.urldecode($_GET['url'])); } // Iterate over the auth token to find which one did sign the request. @@ -157,7 +157,7 @@ class AuthModule extends PLModule pl_redirect('/'); } - function handler_admin_authgroupesx(&$page, $action = 'list', $id = null) + function handler_admin_authgroupesx($page, $action = 'list', $id = null) { $page->setTitle('Administration - Auth groupes X'); $page->assign('title', 'Gestion de l\'authentification centralisée');