mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-19 06:51:33 +02:00
[ticket/14972] replace all occurrences of sizeof() with the count()
PHPBB3-14972
This commit is contained in:
@@ -134,7 +134,7 @@ class config implements \phpbb\db\migration\tool\tool_interface
|
||||
|
||||
case 'remove':
|
||||
$call = 'add';
|
||||
if (sizeof($arguments) == 1)
|
||||
if (count($arguments) == 1)
|
||||
{
|
||||
$arguments[] = '';
|
||||
}
|
||||
|
@@ -110,7 +110,7 @@ class config_text implements \phpbb\db\migration\tool\tool_interface
|
||||
|
||||
case 'remove':
|
||||
$call = 'add';
|
||||
if (sizeof($arguments) == 1)
|
||||
if (count($arguments) == 1)
|
||||
{
|
||||
$arguments[] = '';
|
||||
}
|
||||
|
@@ -515,7 +515,7 @@ class module implements \phpbb\db\migration\tool\tool_interface
|
||||
$parent_id = $parent_id ?: 0;
|
||||
|
||||
// If automatic adding is in action, convert array back to string to simplify things
|
||||
if (is_array($data) && sizeof($data) == 1)
|
||||
if (is_array($data) && count($data) == 1)
|
||||
{
|
||||
$data = $data['module_langname'];
|
||||
}
|
||||
@@ -528,7 +528,7 @@ class module implements \phpbb\db\migration\tool\tool_interface
|
||||
// Search for the parent module_langname
|
||||
$ids = array_keys($this->module_categories, $parent_id);
|
||||
|
||||
switch (sizeof($ids))
|
||||
switch (count($ids))
|
||||
{
|
||||
// No parent with the given module_langname exist
|
||||
case 0:
|
||||
|
@@ -442,7 +442,7 @@ class permission implements \phpbb\db\migration\tool\tool_interface
|
||||
}
|
||||
);
|
||||
|
||||
if (sizeof($auth_option))
|
||||
if (count($auth_option))
|
||||
{
|
||||
return $this->permission_set($role_name, $auth_option, 'role', $has_permission);
|
||||
}
|
||||
|
Reference in New Issue
Block a user