summaryrefslogtreecommitdiff
path: root/buildmaster
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2018-06-04 12:27:24 +0200
committerErich Eckner <git@eckner.net>2018-06-04 12:27:24 +0200
commite9f68c699a6f94169c1191462dc649548d5c89f6 (patch)
treefa1f8f39bf860a3e1f3704a7d6729333871c0252 /buildmaster
parent380fe1437a2b3ea1def26bd3ce5e21ca32194bfa (diff)
downloadarchweb32-e9f68c699a6f94169c1191462dc649548d5c89f6.tar.xz
buildmaster/todos.php: show numbers in graph, too
Diffstat (limited to 'buildmaster')
-rw-r--r--buildmaster/todos.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildmaster/todos.php b/buildmaster/todos.php
index 9785cf4..427d2cc 100644
--- a/buildmaster/todos.php
+++ b/buildmaster/todos.php
@@ -17,7 +17,8 @@ if (isset($_GET["graph"])) {
while ($row = $result->fetch_assoc())
$knot_rows[$row["id"]] =
- $row["file"]. " (line ".$row["line"]."):\\n".str_replace("\"","\\\"",$row["description"]);
+ $row["file"]. " (line ".$row["line"].") #".$row["id"].":\\n".
+ str_replace("\"","\\\"",$row["description"]);
$knots="";
foreach ($knot_rows as $knot)