fix indentation

This commit is contained in:
Antoine Beaupré 2008-04-12 20:01:07 +00:00
parent d0e9dc8d59
commit ee87f3bbb8
1 changed files with 7 additions and 8 deletions
bureau/class

View File

@ -1,6 +1,6 @@
<?php <?php
/* Read global variables (AlternC configuration) */
/* Read global variables (AlternC configuration) */
$L_VERSION="v. @@REPLACED_DURING_BUILD@@"; $L_VERSION="v. @@REPLACED_DURING_BUILD@@";
/* To ease the transition, we define a lookup table for old names */ /* To ease the transition, we define a lookup table for old names */
@ -8,8 +8,7 @@ $compat = array('DEFAULT_MX' => 'MX',
'MYSQL_USER' => 'MYSQL_LOGIN', 'MYSQL_USER' => 'MYSQL_LOGIN',
'MYSQL_PASS' => 'MYSQL_PWD', 'MYSQL_PASS' => 'MYSQL_PWD',
'NS1_HOSTNAME' => 'NS1', 'NS1_HOSTNAME' => 'NS1',
'NS2_HOSTNAME' => 'NS2' 'NS2_HOSTNAME' => 'NS2');
);
$config_file = fopen('/etc/alternc/local.sh', 'r'); $config_file = fopen('/etc/alternc/local.sh', 'r');
@ -21,5 +20,5 @@ while (FALSE !== ($line = fgets($config_file))) {
} }
} }
} }
fclose($config_file); fclose($config_file);
?>