Skip to content

Commit

Permalink
korrektur
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Dec 30, 2024
1 parent e5a21be commit 01b7287
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions site/models/staff.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ function getPresenceStats($project_id, $person_id)
$query->join('INNER', '#__sportsmanagement_match AS m ON mp.match_id = m.id');
$query->join('INNER', '#__sportsmanagement_season_team_person_id AS tp ON tp.id = mp.team_staff_id');
$query->join('INNER', '#__sportsmanagement_project_team AS pt ON m.projectteam1_id = pt.id');
$query->where('pt.project_id = ' . $projectid);
$query->where('tp.person_id = ' . $personid);
$query->where('pt.project_id = ' . $project_id);
$query->where('tp.person_id = ' . $person_id);
$query->where('tp.published = 1');


Expand Down

0 comments on commit 01b7287

Please sign in to comment.