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:
authorMichal Čihař <mcihar@novell.com>2011-06-06 13:55:09 +0400
committerMichal Čihař <mcihar@novell.com>2011-06-06 13:55:09 +0400
commit3cf4830bbb94ce8fe7078f4a3f4fbac1c6253a8c (patch)
tree0584a0070c168ee3c9b44bca92f86dcbd4542091 /db_sql.php
parent8b0fc6073a71097852e1330508cc20e8995ff5ae (diff)
Replace TRUE/FALSE with true/false.
At least this seems to be the coding standard, so make all files compliant.
Diffstat (limited to 'db_sql.php')
-rw-r--r--db_sql.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_sql.php b/db_sql.php
index 2020dea7d5..08eb5cac34 100644
--- a/db_sql.php
+++ b/db_sql.php
@@ -31,7 +31,7 @@ $back = 'db_sql.php';
require './libraries/db_info.inc.php';
if ($num_tables == 0 && empty($db_query_force)) {
$sub_part = '';
- $is_info = TRUE;
+ $is_info = true;
require './db_structure.php';
exit();
}