Skip to content

Commit

Permalink
[ticket/11495] Remove useless cast
Browse files Browse the repository at this point in the history
PHPBB3-11495
  • Loading branch information
nickvergessen committed Apr 30, 2013
1 parent 529e4c0 commit 055ee41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpBB/includes/tree/nestedset.php
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ protected function get_set_of_nodes_data($item_id, $condition, $order_asc = true
public function get_path_basic_data(array $item)
{
$parents = array();
if ((int) $item[$this->column_parent_id])
if ($item[$this->column_parent_id])
{
if (!$item[$this->column_item_parents])
{
Expand Down

0 comments on commit 055ee41

Please sign in to comment.