coding standards

This commit is contained in:
Loïc Chapeaux
2002-09-13 09:32:41 +00:00
parent 1fde05de4f
commit a68db84064
2 changed files with 10 additions and 10 deletions

View File

@@ -524,9 +524,9 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
// or the host field, then generate a name for the server
// in the form of "Server 2", localized of course!
if ( ($val['connect_type'] == 'socket') && empty($val['host']) && empty($val['verbose']) ) {
$cfg['Servers'][$key]['verbose'] = sprintf($GLOBALS['strServer'],$key);
$val['verbose'] = sprintf($GLOBALS['strServer'],$key);
}
$cfg['Servers'][$key]['verbose'] = sprintf($GLOBALS['strServer'], $key);
$val['verbose'] = sprintf($GLOBALS['strServer'],$key);
}
}
if (empty($server) || !isset($cfg['Servers'][$server]) || !is_array($cfg['Servers'][$server])) {

View File

@@ -197,7 +197,7 @@ $fields_cnt = mysql_num_rows($table_def);
// Set a flag here because the 'if' would not be valid in the loop
// if we set a value in some field
$insert_mode = (!isset($row) ? TRUE:FALSE);
$insert_mode = (!isset($row) ? TRUE : FALSE);
for ($i = 0; $i < $fields_cnt; $i++) {
// Display the submit button after every 15 lines --swix
@@ -403,9 +403,9 @@ for ($i = 0; $i < $fields_cnt; $i++) {
// We could also do the SELECT anyway, with a LIMIT, and ensure that
// the current value of the field is one of the choices.
$count_query = 'SELECT COUNT(*) AS total FROM ' . PMA_backquote($foreign_db) . '.' . PMA_backquote($foreign_table);
$count_result = PMA_mysql_query($count_query) or PMA_mysqlDie('', $count_query, '', $err_url);
$the_total = PMA_mysql_result($count_result, 0, 'total');
$count_query = 'SELECT COUNT(*) AS total FROM ' . PMA_backquote($foreign_db) . '.' . PMA_backquote($foreign_table);
$count_result = PMA_mysql_query($count_query) or PMA_mysqlDie('', $count_query, '', $err_url);
$the_total = PMA_mysql_result($count_result, 0, 'total');
mysql_free_result($count_result);
if ($the_total < 200) {
@@ -416,7 +416,7 @@ for ($i = 0; $i < $fields_cnt; $i++) {
. ' FROM ' . PMA_backquote($foreign_db) . '.' . PMA_backquote($foreign_table);
$disp = PMA_mysql_query($dispsql);
}
}
} // end if $foreigners
if (isset($disp) && $disp) {
echo ' <td bgcolor="' . $bgcolor . '">' . "\n";