summaryrefslogtreecommitdiffstats
path: root/install.php
diff options
context:
space:
mode:
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php
index 47084528..5f5fe369 100644
--- a/install.php
+++ b/install.php
@@ -60,7 +60,7 @@ function tableHasColumn($table, $column)
return false;
}
-function tableHasIndex($table, $index)
+function tableGetIndex($table, $index)
{
$table = preg_replace('/\W/', '', $table);
if (!is_array($index)) {
@@ -79,9 +79,9 @@ function tableHasIndex($table, $index)
}
}
}
- foreach ($matches as $m) {
+ foreach ($matches as $key => $m) {
if ($m === count($index))
- return true;
+ return $key;
}
return false;
}