From 87a70c8843aa4402c904e9c5247e8d392b146859 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Mon, 21 Jan 2013 13:37:45 +0100 Subject: [PATCH] improve coding style --- libraries/plugins/auth/AuthenticationCookie.class.php | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) 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 '
';