From 3ebc5d1c80bac252030bcad662713a9b39af8ee6 Mon Sep 17 00:00:00 2001 From: Fabrixxm Date: Fri, 6 Sep 2013 12:30:10 -0400 Subject: [PATCH] update error message to login one --- include/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/user.php b/include/user.php index 220d3d8c8b..23023abd65 100644 --- a/include/user.php +++ b/include/user.php @@ -63,7 +63,7 @@ function create_user($arr) { try { $authurl = $openid->authUrl(); } catch (Exception $e){ - $result['message'] .= t('Error:').$e->getMessage() . EOL . t('Check your OpenID url') . EOL; + $result['message'] .= t("We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."). EOL . EOL . t("The error message was:") . $e->getMessage() . EOL; return $result; } goaway($authurl);