From cc25acacff177f789dd1ad2470dc61b9f83de9d3 Mon Sep 17 00:00:00 2001 From: Robert Treat Date: Sat, 11 Jul 2009 20:52:40 -0400 Subject: [PATCH] doh, missing changes from concurrent index feature --- indexes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/indexes.php b/indexes.php index 08bc2f35e..dd098a5f7 100644 --- a/indexes.php +++ b/indexes.php @@ -195,7 +195,8 @@ function doSaveCreateIndex() { elseif (!isset($_POST['IndexColumnList']) || $_POST['IndexColumnList'] == '') doCreateIndex($lang['strindexneedscols']); else { $status = $data->createIndex($_POST['formIndexName'], $_POST['table'], $_POST['IndexColumnList'], - $_POST['formIndexType'], isset($_POST['formUnique']), $_POST['formWhere'], $_POST['formSpc']); + $_POST['formIndexType'], isset($_POST['formUnique']), $_POST['formWhere'], $_POST['formSpc'], + $_POST['formConcur']); if ($status == 0) doDefault($lang['strindexcreated']); else