From 62b4f117bf8e2592712bab88f76b94d819143132 Mon Sep 17 00:00:00 2001 From: Hauke Altmann Date: Fri, 17 Apr 2015 10:02:17 +0200 Subject: [PATCH] bug fix: "local_" has 6 not 5 characters --- include/dbstructure.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/dbstructure.php b/include/dbstructure.php index 9faede0ca1..76ba37e37c 100644 --- a/include/dbstructure.php +++ b/include/dbstructure.php @@ -153,7 +153,7 @@ function update_structure($verbose, $action, $tables=null, $definition=null) { } else { // Drop the index if it isn't present in the definition and index name doesn't start with "local_" foreach ($database[$name]["indexes"] AS $indexname => $fieldnames) - if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 5) != 'local_') { + if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 6) != 'local_') { $sql2=db_drop_index($indexname); if ($sql3 == "") $sql3 = "ALTER TABLE `".$name."` ".$sql2;