Skip to content

Commit d382b96

Browse files
authored
report-only-existing-useres (joomla#45003)
1 parent 1bc5beb commit d382b96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

administrator/modules/mod_logged/src/Helper/LoggedHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public static function getList(Registry $params, CMSApplication $app, DatabaseIn
4545
$query = $db->getQuery(true)
4646
->select('s.time, s.client_id, u.id, u.name, u.username')
4747
->from('#__session AS s')
48-
->join('LEFT', '#__users AS u ON s.userid = u.id')
48+
->join('RIGHT', '#__users AS u ON s.userid = u.id')
4949
->where('s.guest = 0')
5050
->setLimit($params->get('count', 5), 0);
5151

0 commit comments

Comments
 (0)