Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion administrator/models/hierarchys.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public function getItems()
$item->ReportsToUserName = array();
$item->ReportsTo = array();

if ($item->subuserId)
if (isset($item->subuserId))

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

only isset will work? what if it is set to blank?

{
$results = $this->hierarchyModel->getReportsTo($item->user_id);
$item->ReportsTo = $results;
Expand Down