Fix Checkstyle Warnings - Type: CloseBracketLine

This commit is contained in:
Madhura Jayaratne 2012-04-14 10:40:39 +05:30
parent 3332151859
commit ef68eaa254
2 changed files with 9 additions and 5 deletions

View File

@ -28,7 +28,9 @@ $export_list = PMA_getPlugins(
'libraries/export/',
array(
'export_type' => $export_type,
'single_table' => isset($single_table)));
'single_table' => isset($single_table)
)
);
// Backward compatbility
$type = $what;

View File

@ -604,10 +604,12 @@ function PMA_displayTableList($tables, $visible = false,
$href = $GLOBALS['cfg']['DefaultTabTable'] . '?'
.$GLOBALS['common_url_query'] . '&table='
.urlencode($table['Name']) . '&pos=0';
echo '<a href="' . $href
. '" title="' . htmlspecialchars(PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable']) . ': ' . $table['Comment']
.' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows')) . ')"'
.' id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
echo '<a href="' . $href . '" title="'
. htmlspecialchars(
PMA_getTitleForTarget($GLOBALS['cfg']['DefaultTabTable']) . ': ' . $table['Comment']
.' (' . PMA_formatNumber($table['Rows'], 0) . ' ' . __('Rows') . ')'
)
.'" id="' . htmlspecialchars($table_db . '.' . $table['Name']) . '">'
// preserve spaces in table name
. str_replace(' ', '&nbsp;', htmlspecialchars($table['disp_name'])) . '</a>';
echo '</li>' . "\n";