From: Hauke Altmann Date: Fri, 17 Apr 2015 07:59:28 +0000 (+0200) Subject: bug fix: substring is not a PHP function %-) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c292d017239dc6f61f3d1fe60297e24a06d57f4d;p=friendica.git bug fix: substring is not a PHP function %-) --- diff --git a/include/dbstructure.php b/include/dbstructure.php index 012bb6f0bc..9faede0ca1 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]) && substring($indexname, 0, 5) != 'local_') { + if (!isset($structure["indexes"][$indexname]) && substr($indexname, 0, 5) != 'local_') { $sql2=db_drop_index($indexname); if ($sql3 == "") $sql3 = "ALTER TABLE `".$name."` ".$sql2;