Skip to content

Commit

Permalink
Fix typo in string concatenation
Browse files Browse the repository at this point in the history
fixes #1512
  • Loading branch information
wilpig committed Feb 18, 2024
1 parent 5840213 commit 47e15ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report_panel_schedule.php
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@
for($count=1; $count<=$panel->NumberOfPoles; $count++) {
$reportHTML .= '<tr id="itemRow"><td align="center">'.$count.'</td>';
$reportHTML .= $panel->getPanelScheduleLabelHtml($panelSchedule["panelSchedule"], $count, "panelleft", true);
$reportHTML .- '</tr>';
$reportHTML .= '</tr>';
}
}

Expand Down

0 comments on commit 47e15ae

Please sign in to comment.