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-08-30 23:57:17 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-08-30 23:57:17 +0400
commit7e169fcaeffb6d0c9e6377b99133c94a8436180d (patch)
treea66e4c8f88db49a0044f2697d772c1811ac76194 /navigation.php
parentba16e22315f5ec8a35ddf2703b785087dd9f376a (diff)
Coding style improvements
Diffstat (limited to 'navigation.php')
-rw-r--r--navigation.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/navigation.php b/navigation.php
index c74184c502..f0725e4919 100644
--- a/navigation.php
+++ b/navigation.php
@@ -85,8 +85,8 @@ $header->disableMenu();
$header->setBodyId('body_leftFrame');
$scripts = $header->getScripts();
$scripts->addFile('navigation.js');
-$scripts->addCode('
- // INIT PMA_setFrameSize
+$scripts->addCode(
+ '// INIT PMA_setFrameSize
var onloadCnt = 0;
var onLoadHandler = window.onload;
var resizeHandler = window.onresize;
@@ -113,8 +113,8 @@ $scripts->addCode('
) {
PMA_saveFrameSize();
}
- };
-');
+ };'
+);
require 'libraries/navigation_header.inc.php';
@@ -339,7 +339,7 @@ function PMA_displayDbList($ext_dblist, $offset, $count)
{
global $element_counter, $img_minus, $img_plus, $href_left,
$db_start, $common_url_query;
-
+
$common_functions = PMA_CommonFunctions::getInstance();
// get table list, for all databases
@@ -530,9 +530,9 @@ function PMA_displayTableList(
$tables, $visible = false,
$tab_group_full = '', $table_db = ''
) {
-
+
$common_functions = PMA_CommonFunctions::getInstance();
-
+
if (! is_array($tables) || count($tables) === 0) {
return;
}