summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-23 05:48:13 +0000
committerAngie Byron <webchick@24967.no-reply.drupal.org>2010-04-23 05:48:13 +0000
commit57fe6927a05c565ac5e2b61dcf9fe82da6614872 (patch)
tree5ec922fd9de0b091cc75bc80b0d9adab84610cb4 /modules/openid
parent6e82d23e9717a55417fe53a478aff2d80698d2f0 (diff)
downloadbrdo-57fe6927a05c565ac5e2b61dcf9fe82da6614872.tar.gz
brdo-57fe6927a05c565ac5e2b61dcf9fe82da6614872.tar.bz2
#779390 by solotandem: Fixed esoteric invalid syntax bugs in core found by Grammar Parser module.
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/tests/openid_test.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/openid/tests/openid_test.module b/modules/openid/tests/openid_test.module
index b2f737b21..6532f3b67 100644
--- a/modules/openid/tests/openid_test.module
+++ b/modules/openid/tests/openid_test.module
@@ -178,10 +178,10 @@ function openid_test_html_openid2() {
*/
function openid_test_endpoint() {
switch ($_REQUEST['openid_mode']) {
- case 'associate';
+ case 'associate':
_openid_test_endpoint_associate();
break;
- case 'checkid_setup';
+ case 'checkid_setup':
_openid_test_endpoint_authenticate();
break;
}