Skip to content

Commit

Permalink
Fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
lem9 committed Sep 9, 2013
1 parent f30b6a6 commit 2c41695
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion setup/frames/index.inc.php
Expand Up @@ -31,7 +31,7 @@
// Check phpMyAdmin version
//
if (isset($_GET['version_check'])) {
PMA_version_check();
PMA_versionCheck();
}

//
Expand Down
2 changes: 1 addition & 1 deletion setup/lib/index.lib.php
Expand Up @@ -101,7 +101,7 @@ function PMA_messagesShowHtml()
*
* @return void
*/
function PMA_version_check()
function PMA_versionCheck()
{
// version check messages should always be visible so let's make
// a unique message id each time we run it
Expand Down
12 changes: 6 additions & 6 deletions test/libraries/PMA_Index_test.php
Expand Up @@ -162,7 +162,7 @@ public function testPMAMessagesShowHTML()
}

/**
* Test for PMA_version_check
* Test for PMA_versionCheck
*
* @return void
*/
Expand All @@ -179,7 +179,7 @@ public function testPMAVersionCheckCase1()

$GLOBALS['PMA_Config'] = $pmaconfig;

PMA_version_check();
PMA_versionCheck();

$this->assertArrayHasKey(
'notice',
Expand Down Expand Up @@ -210,7 +210,7 @@ public function testPMAVersionCheckCase1()
}

/**
* Test for PMA_version_check
* Test for PMA_versionCheck
*
* @return void
*/
Expand All @@ -227,7 +227,7 @@ public function testPMAVersionCheckCase2()

$GLOBALS['PMA_Config'] = $pmaconfig;

PMA_version_check();
PMA_versionCheck();

$this->assertArrayHasKey(
'notice',
Expand Down Expand Up @@ -258,7 +258,7 @@ public function testPMAVersionCheckCase2()
}

/**
* Test for PMA_version_check
* Test for PMA_versionCheck
*
* @return void
*/
Expand All @@ -275,7 +275,7 @@ public function testPMAVersionCheckCase3()

$GLOBALS['PMA_Config'] = $pmaconfig;

PMA_version_check();
PMA_versionCheck();

$this->assertArrayHasKey(
'notice',
Expand Down

0 comments on commit 2c41695

Please sign in to comment.