Skip to content

Commit

Permalink
Add missing brackets around xecho
Browse files Browse the repository at this point in the history
  • Loading branch information
gregcorbett committed Nov 29, 2023
1 parent 8a7d0ec commit 800ec3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/web_portal/views/user/view_user.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
$homeShortName = $params['user']->getHomeSite()->getShortName();
echo "<a href=\"index.php?Page_Type=Site&amp;id=$homeId\">";
// Use xecho as the Site's ShortName is user submitted input.
xecho $homeShortName;
xecho($homeShortName);
echo "</a>";
?>
</td>
Expand Down

0 comments on commit 800ec3b

Please sign in to comment.