Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 09:10:39 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-14 09:10:39 +0400
commitef68eaa25487addf2015a60ef399ca96919bd9a4 (patch)
tree7a867b5e1fe6bcb3eb04ae1a55ba30d4fa3251b8 /navigation.php
parent33321518591ade27e1651bf3e912d6bdecb7f342 (diff)
Fix Checkstyle Warnings - Type: CloseBracketLine
Diffstat (limited to 'navigation.php')
-rw-r--r--navigation.php10
1 files changed, 6 insertions, 4 deletions
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'] . '&amp;table='
.urlencode($table['Name']) . '&amp;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";