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 /browse_foreigners.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 'browse_foreigners.php')
-rw-r--r--browse_foreigners.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/browse_foreigners.php b/browse_foreigners.php
index 16fa48c822..0b104841fe 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -23,9 +23,9 @@ require_once './libraries/header_http.inc.php';
*/
require_once './libraries/transformations.lib.php'; // Transformations
$cfgRelation = PMA_getRelationsParam();
-$foreigners = ($cfgRelation['relwork'] ? PMA_getForeigners($db, $table) : FALSE);
+$foreigners = ($cfgRelation['relwork'] ? PMA_getForeigners($db, $table) : false);
-$override_total = TRUE;
+$override_total = true;
if (! isset($pos)) {
$pos = 0;
@@ -180,7 +180,7 @@ if (is_array($foreignData['disp_row'])) {
$values = array();
$keys = array();
foreach ($foreignData['disp_row'] as $relrow) {
- if ($foreignData['foreign_display'] != FALSE) {
+ if ($foreignData['foreign_display'] != false) {
$values[] = $relrow[$foreignData['foreign_display']];
} else {
$values[] = '';