Skip to content

Commit

Permalink
Fix Checkstyle Warnings - Type: CloseBracketLine
Browse files Browse the repository at this point in the history
  • Loading branch information
madhuracj committed Apr 14, 2012
1 parent 3332151 commit ef68eaa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion export.php
Expand Up @@ -28,7 +28,9 @@
'libraries/export/',
array(
'export_type' => $export_type,
'single_table' => isset($single_table)));
'single_table' => isset($single_table)
)
);

// Backward compatbility
$type = $what;
Expand Down
10 changes: 6 additions & 4 deletions navigation.php
Expand Up @@ -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";
Expand Down

0 comments on commit ef68eaa

Please sign in to comment.