Skip to content

Commit

Permalink
techjoomla#12 chore: change variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
pravinTek committed Aug 20, 2019
1 parent 248822f commit bd293d6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ protected function getListQuery()
}
}

$created_by = $this->getState('filter.created_by');
$createdBy = $this->getState('filter.created_by');

if (!empty($created_by))
if (!empty($createdBy))
{
$query->where($db->quoteName('cu.created_by') . ' = ' . (int) $created_by);
$query->where($db->quoteName('cu.created_by') . ' = ' . (int) $createdBy);
}

// Filter by state
Expand Down

0 comments on commit bd293d6

Please sign in to comment.