projects
/
phppgadmin.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
353f9e1
)
Fix Undefined index formConcur when creating an index without CONCURRENTLY
author
Guillaume (ioguix) de Rorthais
<ioguix@free.fr>
Fri, 30 Oct 2009 21:04:27 +0000
(22:04 +0100)
committer
Guillaume (ioguix) de Rorthais
<ioguix@free.fr>
Fri, 30 Oct 2009 21:04:27 +0000
(22:04 +0100)
indexes.php
patch
|
blob
|
blame
|
history
diff --git
a/indexes.php
b/indexes.php
index dd098a5f70029377dabb08383aac7d8f3d52c6d0..a3756b2db2b66908dd26f3b82d5ffc88d7d1e1f8 100644
(file)
--- a/
indexes.php
+++ b/
indexes.php
@@
-196,7
+196,7
@@
else {
$status = $data->createIndex($_POST['formIndexName'], $_POST['table'], $_POST['IndexColumnList'],
$_POST['formIndexType'], isset($_POST['formUnique']), $_POST['formWhere'], $_POST['formSpc'],
-
$_POST['formConcur']
);
+
isset($_POST['formConcur'])
);
if ($status == 0)
doDefault($lang['strindexcreated']);
else