diff --git a/controllers/auth.php b/controllers/auth.php index 7caddd3..abbe3b9 100644 --- a/controllers/auth.php +++ b/controllers/auth.php @@ -27,6 +27,9 @@ function build_url($parsed_url) { function normalizeMeURL($url) { $me = parse_url($url); + if(array_key_exists('path', $me) && $me['path'] == '') + return false; + // parse_url returns just "path" for naked domains if(count($me) == 1 && array_key_exists('path', $me)) { $me['host'] = $me['path']; @@ -79,7 +82,7 @@ $app->get('/auth/start', function() use($app) { $html = render('auth_error', array( 'title' => 'Sign In', 'error' => 'Invalid "me" Parameter', - 'errorDescription' => 'The ID you entered, ' . $params['me'] . ' is not valid.' + 'errorDescription' => 'The URL you entered, "' . $params['me'] . '" is not valid.' )); $app->response()->body($html); return; diff --git a/views/auth_error.php b/views/auth_error.php index 58728b5..b1db246 100644 --- a/views/auth_error.php +++ b/views/auth_error.php @@ -5,4 +5,4 @@

errorDescription ?>

- \ No newline at end of file + \ No newline at end of file