index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
author | Erich Eckner <git@eckner.net> | 2019-01-15 15:33:31 +0100 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-01-15 15:33:31 +0100 |
commit | 46f099ed0c4742c09b8e9ee3c357d1a92fece5bd (patch) | |
tree | 078b28605284e45c3628891652b7608640792546 /buildmaster/mysql-issues.php | |
parent | df6da4fe0fc274388f9f87aa6626478a91f4b902 (diff) |
-rw-r--r-- | buildmaster/mysql-issues.php | 4 |
diff --git a/buildmaster/mysql-issues.php b/buildmaster/mysql-issues.php index 744f122..0c27608 100644 --- a/buildmaster/mysql-issues.php +++ b/buildmaster/mysql-issues.php @@ -94,7 +94,7 @@ require_once BASE . "/lib/mysql.php"; print " <font color=\"#00ff00\">(marked as to-be-deleted) "; else print " <font color=\"#ff0000\">"; - print $row["pkgfile"] . " depends on " . $row["install_target"] . " which is not provided by any package"; + print $row["pkgfile"] . " depends on " . htmlspecialchars($row["install_target"]) . " which is not provided by any package"; if (isset($row["subst_repository"])) print " - but can be replaced by the one in " . $row["subst_repository"]; elseif (isset($row["subst_buildlist"])) @@ -175,7 +175,7 @@ require_once BASE . "/lib/mysql.php"; print " <font color=\"#00ff00\">(marked as to-be-deleted) "; else print " <font color=\"#800000\">"; - print $row["pkgfile"] . " depends on " . $row["install_target"] . " which is not provided by any package installable from enabled " . $row["stability"] . " repositories.<br>"; + print $row["pkgfile"] . " depends on " . htmlspecialchars($row["install_target"]) . " which is not provided by any package installable from enabled " . $row["stability"] . " repositories.<br>"; print "</font>\n"; unset($row); } |