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:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2012-04-29 03:04:25 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2012-04-29 03:09:09 +0400
commit68fe78a42a10f7046e8e1ad842f60078f617806d (patch)
tree0f24fb86977607bd128ee40f3d57ddab2d9ffecc /navigation.php
parent16bcdb108f1b59d84c6abbb1e4725498a6f1f3a7 (diff)
fix function definition
Diffstat (limited to 'navigation.php')
-rw-r--r--navigation.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/navigation.php b/navigation.php
index c9f17476d5..46f68af7da 100644
--- a/navigation.php
+++ b/navigation.php
@@ -497,9 +497,10 @@ function PMA_displayDbList($ext_dblist, $offset, $count)
* @param string $tab_group_full full tab group name
* @param string $table_db db of this table
*/
-function PMA_displayTableList($tables, $visible = false,
- $tab_group_full = '', $table_db = '')
-{
+function PMA_displayTableList(
+ $tables, $visible = false,
+ $tab_group_full = '', $table_db = ''
+) {
if (! is_array($tables) || count($tables) === 0) {
return;
}