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-05-07 20:55:53 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-05-07 20:55:53 +0400
commit841636e2ed51a00948a07b5e9312aac40cc45c38 (patch)
treead96331e3efe5b7c0cd971c4d3254db2e5e71623 /libraries/auth
parent24b214b3450e89c54930849e0c3aff4753b65eed (diff)
Fix indentation
Diffstat (limited to 'libraries/auth')
-rw-r--r--libraries/auth/config.auth.lib.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/libraries/auth/config.auth.lib.php b/libraries/auth/config.auth.lib.php
index 187fa16217..50eabb1c2e 100644
--- a/libraries/auth/config.auth.lib.php
+++ b/libraries/auth/config.auth.lib.php
@@ -102,13 +102,13 @@ function PMA_auth_fails()
if ($GLOBALS['PMA_Config']->source_mtime == 0) {
echo '<p>' . sprintf(__('You probably did not create a configuration file. You might want to use the %1$ssetup script%2$s to create one.'), '<a href="setup/">', '</a>') . '</p>' . "\n";
} elseif (!isset($GLOBALS['errno']) || (isset($GLOBALS['errno']) && $GLOBALS['errno'] != 2002) && $GLOBALS['errno'] != 2003) {
- // if we display the "Server not responding" error, do not confuse users
- // by telling them they have a settings problem
- // (note: it's true that they could have a badly typed host name, but
- // anyway the current message tells that the server
- // rejected the connection, which is not really what happened)
- // 2002 is the error given by mysqli
- // 2003 is the error given by mysql
+ // if we display the "Server not responding" error, do not confuse users
+ // by telling them they have a settings problem
+ // (note: it's true that they could have a badly typed host name, but
+ // anyway the current message tells that the server
+ // rejected the connection, which is not really what happened)
+ // 2002 is the error given by mysqli
+ // 2003 is the error given by mysql
trigger_error(__('phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server.'), E_USER_WARNING);
}
PMA_mysqlDie($conn_error, '', true, '', false);