From 0f88302428defb4449bbf650330f417414f2a2b7 Mon Sep 17 00:00:00 2001 From: Nigel Jones Date: Fri, 6 Feb 2009 23:07:04 +1000 Subject: [PATCH] Bump to 0.9.1 - s/=/==/ --- scripts/Auth_FAS_MediaWiki/Auth_FAS.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/Auth_FAS_MediaWiki/Auth_FAS.php b/scripts/Auth_FAS_MediaWiki/Auth_FAS.php index 4a76928..609c3de 100644 --- a/scripts/Auth_FAS_MediaWiki/Auth_FAS.php +++ b/scripts/Auth_FAS_MediaWiki/Auth_FAS.php @@ -27,7 +27,7 @@ $groups = $response["person"]["approved_memberships"]; for ($i = 0, $cnt = count($groups); $i < $cnt; $i++) { - if ($groups[$i]["name"] = "cla_done") { + if ($groups[$i]["name"] == "cla_done") { return true; } } @@ -106,10 +106,9 @@ */ $wgExtensionCredits['other'][] = array( 'name' => 'Auth_FAS', - 'version' => '0.9', + 'version' => '0.9.1', 'author' => 'Nigel Jones', 'description' => 'Authorisation plugin allowing login with FAS2 accounts'#, -# 'url' => 'http://www.mediawiki.org/wiki/Extension:PwAuthPlugin' ); ?>