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:
authorMarc Delisle <marc@infomarc.info>2011-05-09 20:49:05 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-09 20:49:05 +0400
commit13b31956aed38141836faf386d97c042a3087f48 (patch)
treee1cecbcf715c1dbe18cffab0eebd4dfe7257245a /db_qbe.php
parent555c04b4a1bb91780aa21bff2b420eb6171a995d (diff)
For easier reading, replace "!isset" with "! isset"
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/db_qbe.php b/db_qbe.php
index 751317d111..34c85eed3f 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -339,7 +339,7 @@ for ($x = 0; $x < $col; $x++) {
if (isset($criteria[$x])) {
$tmp_criteria = $criteria[$x];
}
- if ((empty($prev_criteria) || !isset($prev_criteria[$x]))
+ if ((empty($prev_criteria) || ! isset($prev_criteria[$x]))
|| $prev_criteria[$x] != htmlspecialchars($tmp_criteria)) {
$curCriteria[$z] = $tmp_criteria;
} else {
@@ -497,7 +497,7 @@ for ($y = 0; $y <= $row; $y++) {
echo "\n";
$or = 'Or' . $y;
- if (!isset(${$or})) {
+ if (! isset(${$or})) {
${$or} = '';
}
if (!empty(${$or}) && isset(${$or}[$x])) {
@@ -667,7 +667,7 @@ foreach ($tbl_names as $key => $val) {
<?php
// 1. SELECT
$last_select = 0;
-if (!isset($qry_select)) {
+if (! isset($qry_select)) {
$qry_select = '';
}
for ($x = 0; $x < $col; $x++) {
@@ -892,7 +892,7 @@ if ($criteria_cnt > 1) {
$qry_where = '(' . $qry_where . ')';
}
// OR rows ${'cur' . $or}[$x]
-if (!isset($curAndOrRow)) {
+if (! isset($curAndOrRow)) {
$curAndOrRow = array();
}
for ($y = 0; $y <= $row; $y++) {
@@ -929,7 +929,7 @@ if (!empty($qry_where) && $qry_where != '()') {
// 4. ORDER BY
$last_orderby = 0;
-if (!isset($qry_orderby)) {
+if (! isset($qry_orderby)) {
$qry_orderby = '';
}
for ($x = 0; $x < $col; $x++) {