mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/10897] Add space after foreach.
PHPBB3-10897
This commit is contained in:
parent
53e9bab237
commit
07e7c475d5
1 changed files with 2 additions and 2 deletions
|
@ -2136,7 +2136,7 @@ function change_database_data(&$no_updates, $version)
|
|||
'WiseNut [Bot]',
|
||||
);
|
||||
|
||||
foreach($bots_to_update as $bot_name => $bot_array)
|
||||
foreach ($bots_to_update as $bot_name => $bot_array)
|
||||
{
|
||||
list($bot_agent, $bot_ip) = $bot_array;
|
||||
|
||||
|
@ -2165,7 +2165,7 @@ function change_database_data(&$no_updates, $version)
|
|||
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
|
||||
}
|
||||
|
||||
foreach($bots_to_delete as $bot_name)
|
||||
foreach ($bots_to_delete as $bot_name)
|
||||
{
|
||||
$bot_name_clean = utf8_clean_string($bot_name);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue