Fix some typos (found by codespell) (#969)

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2021-07-31 09:51:54 +02:00
committed by GitHub
parent 4c507232c7
commit 09038ac7aa
53 changed files with 148 additions and 148 deletions

View File

@@ -265,7 +265,7 @@ if (isset($s) && $s != "" && $nosession != 1) {
}
/**
* Language Managament
* Language Management
*/
$langs = array();
$languages = array();
@@ -279,7 +279,7 @@ while ($row = $result_stmt->fetch(PDO::FETCH_ASSOC)) {
$langs[$row['language']][] = $row;
// check for row[iso] cause older froxlor
// versions didn't have that and it will
// lead to a lot of undfined variables
// lead to a lot of undefined variables
// before the admin can even update
if (isset($row['iso'])) {
$iso[$row['iso']] = $row['language'];