Fix Checkstyle Warnings - Type: CloseBracketLine
This commit is contained in:
parent
3332151859
commit
ef68eaa254
@ -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;
|
||||
|
||||
@ -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(' ', ' ', htmlspecialchars($table['disp_name'])) . '</a>';
|
||||
echo '</li>' . "\n";
|
||||
|
||||
Loading…
Reference in New Issue
Block a user