diff --git a/plugins/finder/tags/tags.php b/plugins/finder/tags/tags.php index 7a658a60f6747..8ed13a1d7bda2 100644 --- a/plugins/finder/tags/tags.php +++ b/plugins/finder/tags/tags.php @@ -313,8 +313,7 @@ protected function getListQuery($query = null) // Join the #__users table $query->select('u.name AS author') - ->join('LEFT', '#__users AS u ON u.id = b.created_user_id') - ->from('#__tags AS b'); + ->join('LEFT', '#__users AS u ON u.id = a.created_user_id'); // Exclude the ROOT item $query->where($db->quoteName('a.id') . ' > 1');