Skip to content

Commit

Permalink
tabletennis
Browse files Browse the repository at this point in the history
  • Loading branch information
diddipoeler committed Apr 14, 2023
1 parent c4acd27 commit cb67610
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions admin/models/jlextindividualsport.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ public static function getmatchsingle_rowshome($project_id = 0, $projectteam_id
{
$app->enqueueMessage(Text::sprintf('COM_SPORTSMANAGEMENT_DATABASE_ERROR_FUNCTION_FAILED', $e->getCode(), $e->getMessage()), 'error');
$app->enqueueMessage(Text::sprintf('COM_SPORTSMANAGEMENT_FILE_ERROR_FUNCTION_FAILED', __FILE__, __LINE__), 'error');
$app->enqueueMessage(' query<pre>'.print_r($query->dump(),true).'</pre>', 'error');
}

return $result;
Expand Down
4 changes: 2 additions & 2 deletions site/views/roster/tmpl/default_players_tabletennis.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,8 @@
* projectteam_id
* project_id
*/
$single_matches_home = sportsmanagementModeljlextindividualsport::getmatchsingle_rowshome($row->project_id , $row->rojectteam_id , $row->season_team_person_id, 'SINGLE', 'HOME');
$single_matches_away = sportsmanagementModeljlextindividualsport::getmatchsingle_rowshome($row->project_id , $row->rojectteam_id , $row->season_team_person_id, 'SINGLE', 'AWAY');
$single_matches_home = sportsmanagementModeljlextindividualsport::getmatchsingle_rowshome($row->project_id , $row->projectteam_id , $row->season_team_person_id, 'SINGLE', 'HOME');
$single_matches_away = sportsmanagementModeljlextindividualsport::getmatchsingle_rowshome($row->project_id , $row->projectteam_id , $row->season_team_person_id, 'SINGLE', 'AWAY');
if ( Factory::getConfig()->get('debug') )
{
echo __METHOD__ . ' ' . ' ' . __LINE__ . ' ' . ' matches home <pre>'.print_r($single_matches_home,true).'</pre>';
Expand Down

0 comments on commit cb67610

Please sign in to comment.