Merge pull request #753 from MrPetovan/bug/5932-fix-php-notices

[statusnet] Fix Undefined variable: id
This commit is contained in:
Tobias Diekershoff 2018-10-17 07:32:29 +02:00 committed by GitHub
commit 1818c9b86c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -658,7 +658,7 @@ function statusnet_addon_admin(App $a, &$o)
}
}
/* empty form to add new site */
$id++;
$id = count($sitesform);
$sitesform[] = [
'sitename' => ["sitename[$id]", L10n::t("Site name"), "", ""],
'apiurl' => ["apiurl[$id]", "Api url", "", L10n::t("Base API Path \x28remember the trailing /\x29")],