coding standard: no spaces inside braces

This commit is contained in:
Sebastian Mendel
2007-04-01 11:02:46 +00:00
parent adb39168cc
commit cfeb306526
84 changed files with 745 additions and 747 deletions

View File

@@ -8,14 +8,14 @@
/**
* Gets core libraries and defines some variables
*/
define( 'PMA_MINIMUM_COMMON', true );
define('PMA_MINIMUM_COMMON', true);
require_once './libraries/common.inc.php';
/**
* Displays PHP information
*/
if ( $GLOBALS['cfg']['ShowPhpInfo'] ) {
if ($GLOBALS['cfg']['ShowPhpInfo']) {
phpinfo();
}
?>