diff --git a/libraries/plugins/auth/AuthenticationCookie.class.php b/libraries/plugins/auth/AuthenticationCookie.class.php index d3aa269449..121f94d736 100644 --- a/libraries/plugins/auth/AuthenticationCookie.class.php +++ b/libraries/plugins/auth/AuthenticationCookie.class.php @@ -79,8 +79,9 @@ class AuthenticationCookie extends AuthenticationPlugin sprintf( '%s', $GLOBALS['cfg']['PmaAbsoluteUri'], - __('Log in')) . - ' ]'; + __('Log in') + ) + . ' ]'; if (! empty($conn_error)) { @@ -264,7 +265,10 @@ class AuthenticationCookie extends AuthenticationPlugin // show the "Cookies required" message only if cookies are disabled // (we previously tried to set some cookies) if (empty($_COOKIE)) { - trigger_error(__('Cookies must be enabled past this point.'), E_USER_NOTICE); + trigger_error( + __('Cookies must be enabled past this point.'), + E_USER_NOTICE + ); } if ($GLOBALS['error_handler']->hasDisplayErrors()) { echo '
';