Skip to content

Commit

Permalink
doh, missing changes from concurrent index feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Treat committed Jul 12, 2009
1 parent 6391aa4 commit cc25aca
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion indexes.php
Expand Up @@ -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
Expand Down

0 comments on commit cc25aca

Please sign in to comment.