mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/11495] Remove useless cast
PHPBB3-11495
This commit is contained in:
parent
529e4c00fb
commit
055ee41065
1 changed files with 1 additions and 1 deletions
|
@ -648,7 +648,7 @@ abstract class phpbb_tree_nestedset implements phpbb_tree_interface
|
||||||
public function get_path_basic_data(array $item)
|
public function get_path_basic_data(array $item)
|
||||||
{
|
{
|
||||||
$parents = array();
|
$parents = array();
|
||||||
if ((int) $item[$this->column_parent_id])
|
if ($item[$this->column_parent_id])
|
||||||
{
|
{
|
||||||
if (!$item[$this->column_item_parents])
|
if (!$item[$this->column_item_parents])
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue