From: Fabrixxm Date: Fri, 6 Sep 2013 16:30:10 +0000 (-0400) Subject: update error message to login one X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=3ebc5d1c80bac252030bcad662713a9b39af8ee6;p=friendica.git update error message to login one --- 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);