Skip to content

Commit

Permalink
[GT-187] Add a space for anchor tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Sae126V committed Aug 31, 2023
1 parent fc5a9e9 commit 294ebd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/web_portal/views/downtime/added_downtime.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@
echo '<ul>';
foreach ($params['submittedDowntimes'] as $siteName => $downtimeDetails) {
echo '<li>';
echo $siteName . ':';
echo $siteName . ': ';
echo '<a href="index.php?Page_Type=Downtime&id=';
echo $downtimeDetails->getId();
echo '"> Downtime ' . $downtimeDetails->getId() . '</a>';
echo '">Downtime ' . $downtimeDetails->getId() . '</a>';
echo '</li>';
}
echo '</ul>';
Expand Down

0 comments on commit 294ebd1

Please sign in to comment.