From ef68eaa25487addf2015a60ef399ca96919bd9a4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 14 Apr 2012 10:40:39 +0530 Subject: [PATCH] Fix Checkstyle Warnings - Type: CloseBracketLine --- export.php | 4 +++- navigation.php | 10 ++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/export.php b/export.php index 97527033d2..3e93bb758f 100644 --- a/export.php +++ b/export.php @@ -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; diff --git a/navigation.php b/navigation.php index 60abf80870..91442afd5a 100644 --- a/navigation.php +++ b/navigation.php @@ -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 '' + echo '' // preserve spaces in table name . str_replace(' ', ' ', htmlspecialchars($table['disp_name'])) . ''; echo '' . "\n";