Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
commit4b8d52d937d396301c17472874cb645e92258df3 (patch)
treefcde2fe963c87d5e8059029212583cac220f41d1 /show_config_errors.php
parent67134da3d01ff2f2469d79223d0d22a4515d3227 (diff)
Fix CheckStyle warnings, Type:CloseBracketNewLine (Closing parenthesis of a multi-line IF statement must be on a new line)
Diffstat (limited to 'show_config_errors.php')
-rw-r--r--show_config_errors.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/show_config_errors.php b/show_config_errors.php
index 0b295ed031..18dcbabc1b 100644
--- a/show_config_errors.php
+++ b/show_config_errors.php
@@ -10,7 +10,8 @@ $GLOBALS['now'] = gmdate('D, d M Y H:i:s') . ' GMT';
header('Expires: ' . date(DATE_RFC1123)); // rfc2616 - Section 14.21
header('Cache-Control: no-store, no-cache, must-revalidate, pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
if (isset($_SERVER['HTTP_USER_AGENT'])
- && stristr($_SERVER['HTTP_USER_AGENT'], 'MSIE')) {
+ && stristr($_SERVER['HTTP_USER_AGENT'], 'MSIE')
+) {
/* FIXME: Why is this special case for IE needed? */
header('Pragma: public');