Code Style: Replace "AS" with "as"

This commit is contained in:
Michael 2021-10-03 10:34:41 +00:00
parent 96b41fdb67
commit 9961943b73
10 changed files with 39 additions and 39 deletions

View file

@ -2103,7 +2103,7 @@ class BBCode
$addon = strtolower($addon);
if (preg_match_all("/\[abstract=(.*?)\](.*?)\[\/abstract\]/ism", $text, $results, PREG_SET_ORDER)) {
foreach ($results AS $result) {
foreach ($results as $result) {
$abstracts[strtolower($result[1])] = $result[2];
}
}