From 5d9af18554347a3b5d3fc99273e1fa77a721108b Mon Sep 17 00:00:00 2001 From: "Guillaume (ioguix) de Rorthais" Date: Fri, 30 Oct 2009 22:04:27 +0100 Subject: [PATCH] Fix Undefined index formConcur when creating an index without CONCURRENTLY --- indexes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexes.php b/indexes.php index dd098a5f..a3756b2d 100644 --- 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 -- 2.39.5