Fix Undefined index formConcur when creating an index without CONCURRENTLY
authorGuillaume (ioguix) de Rorthais <ioguix@free.fr>
Fri, 30 Oct 2009 21:04:27 +0000 (22:04 +0100)
committerGuillaume (ioguix) de Rorthais <ioguix@free.fr>
Fri, 30 Oct 2009 21:04:27 +0000 (22:04 +0100)
indexes.php

index dd098a5f70029377dabb08383aac7d8f3d52c6d0..a3756b2db2b66908dd26f3b82d5ffc88d7d1e1f8 100644 (file)
                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