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
path: root/setup
diff options
context:
space:
mode:
authorMarc Delisle <marc@infomarc.info>2013-09-09 13:55:04 +0400
committerMarc Delisle <marc@infomarc.info>2013-09-09 13:55:04 +0400
commit24e84b07df8ebbf920b85c6ab99657b2ced0bbf5 (patch)
treecfa51a613fb0a0b619b4f24ec9f5dd80975cc747 /setup
parent2c41695fe91ffb5d1a254dcd80a1385705dff21c (diff)
Fix codestyle
Diffstat (limited to 'setup')
-rw-r--r--setup/frames/config.inc.php2
-rw-r--r--setup/frames/index.inc.php2
-rw-r--r--setup/lib/index.lib.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/setup/frames/config.inc.php b/setup/frames/config.inc.php
index 40555463d4..a0e7d96212 100644
--- a/setup/frames/config.inc.php
+++ b/setup/frames/config.inc.php
@@ -20,7 +20,7 @@ require_once './setup/lib/ConfigGenerator.class.php';
$config_readable = false;
$config_writable = false;
$config_exists = false;
-check_config_rw($config_readable, $config_writable, $config_exists);
+PMA_checkConfigRw($config_readable, $config_writable, $config_exists);
echo '<h2>' . __('Configuration file') . '</h2>';
PMA_displayFormTop('config.php');
diff --git a/setup/frames/index.inc.php b/setup/frames/index.inc.php
index e7772dbbe0..2cdac5ae99 100644
--- a/setup/frames/index.inc.php
+++ b/setup/frames/index.inc.php
@@ -45,7 +45,7 @@ perform_config_checks();
$config_readable = false;
$config_writable = false;
$config_exists = false;
-check_config_rw($config_readable, $config_writable, $config_exists);
+PMA_checkConfigRw($config_readable, $config_writable, $config_exists);
if (!$config_writable || !$config_readable) {
PMA_messagesSet(
'error', 'config_rw', __('Cannot load or save configuration'),
diff --git a/setup/lib/index.lib.php b/setup/lib/index.lib.php
index f3c95c6437..af1813b3ac 100644
--- a/setup/lib/index.lib.php
+++ b/setup/lib/index.lib.php
@@ -182,7 +182,7 @@ function PMA_versionCheck()
*
* @return void
*/
-function check_config_rw(&$is_readable, &$is_writable, &$file_exists)
+function PMA_checkConfigRw(&$is_readable, &$is_writable, &$file_exists)
{
$file_path = ConfigFile::getInstance()->getFilePath();
$file_dir = dirname($file_path);