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";