mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/15289] Use empty instead of count
PHPBB3-15289
This commit is contained in:
parent
d7b1018110
commit
036ae01b82
1 changed files with 2 additions and 2 deletions
|
@ -128,9 +128,9 @@ class acp_storage
|
|||
}
|
||||
}
|
||||
|
||||
if (count($modified_storages))
|
||||
if (!empty($modified_storages))
|
||||
{
|
||||
if (!count($messages))
|
||||
if (empty($messages))
|
||||
{
|
||||
foreach ($modified_storages as $storage_name)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue