From 23ee5d71dc96dae34a55d5816a356f5805950655 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sat, 8 Aug 2015 10:29:59 -0700 Subject: [PATCH] fix error message for missing "me" param --- controllers/auth.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/controllers/auth.php b/controllers/auth.php index 4ec0db7..55bbf0c 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -157,10 +157,14 @@ $app->get('/auth/callback', function() use($app) { // Double check there is a "me" parameter // Should only fail for really hacked up requests if(!array_key_exists('me', $params) || !($me = normalizeMeURL($params['me']))) { + if(array_key_exists('me', $params)) + $error = 'The ID you entered, ' . $params['me'] . ' is not valid.'; + else + $error = 'There was no "me" parameter in the callback.'; $html = render('auth_error', array( 'title' => 'Auth Callback', 'error' => 'Invalid "me" Parameter', - 'errorDescription' => 'The ID you entered, ' . $params['me'] . ' is not valid.' + 'errorDescription' => $error )); $app->response()->body($html); return;