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 /pmd_relation_upd.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 'pmd_relation_upd.php')
-rw-r--r--pmd_relation_upd.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php
index 564395b1ac..6b4b92bbe9 100644
--- a/pmd_relation_upd.php
+++ b/pmd_relation_upd.php
@@ -50,7 +50,7 @@ if ($try_to_delete_internal_relation) {
. ' AND foreign_db = \'' . PMA_sqlAddslashes($DB1) . '\''
. ' AND foreign_table = \'' . PMA_sqlAddslashes($T1) . '\''
. ' AND foreign_field = \'' . PMA_sqlAddslashes($F1) . '\''
- , FALSE, PMA_DBI_QUERY_STORE);
+ , false, PMA_DBI_QUERY_STORE);
}
PMD_return_upd(1, __('Relation deleted'));