coding standard: no braces around include

This commit is contained in:
Sebastian Mendel
2007-04-01 09:51:41 +00:00
parent b2f3ae5fcf
commit adb39168cc
75 changed files with 260 additions and 260 deletions

View File

@@ -47,7 +47,7 @@ function PMA_auth() {
</head>
<body>
<?php if (file_exists('./config.header.inc.php')) {
require('./config.header.inc.php');
require './config.header.inc.php';
}
?>
@@ -59,7 +59,7 @@ function PMA_auth() {
<div class="warning"><?php echo $GLOBALS['strWrongUser']; ?></div>
<?php if (file_exists('./config.footer.inc.php')) {
require('./config.footer.inc.php');
require './config.footer.inc.php';
}
?>