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:
authorPiotr Przybylski <piotrprz@gmail.com>2011-06-18 02:04:35 +0400
committerPiotr Przybylski <piotrprz@gmail.com>2011-06-18 02:04:35 +0400
commit1f10c9b961f1ea62ae5903a321d2c9bca022e8ea (patch)
treec220d80c1b21585b06fa00b713f3068134ddc558 /db_qbe.php
parent4c1cd515080dfa96e7dfeb231a1ec9ad55c4d293 (diff)
Fix incorrect array key (non_unique -> Non_unique) in qbe
Diffstat (limited to 'db_qbe.php')
-rw-r--r--db_qbe.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_qbe.php b/db_qbe.php
index a5bd7a7e4e..42f6123d71 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -759,7 +759,7 @@ if (isset($Field) && count($Field) > 0) {
while ($ind = PMA_DBI_fetch_assoc($ind_rs)) {
$col1 = $tab . '.' . $ind['Column_name'];
if (isset($col_all[$col1])) {
- if ($ind['non_unique'] == 0) {
+ if ($ind['Non_unique'] == 0) {
if (isset($col_where[$col1])) {
$col_unique[$col1] = 'Y';
} else {