mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Escape each output string using htmlspecialchars(). These aren't exploitable; it's still better to escape them properly. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
9 lines
149 B
PHP
9 lines
149 B
PHP
|
|
<!-- End of main content -->
|
|
<?php
|
|
if ($ver) {
|
|
echo "<div class=\"pgbox version\">" . htmlspecialchars($ver) . "</div>";
|
|
}
|
|
?>
|
|
</body>
|
|
</html>
|