summaryrefslogtreecommitdiff
path: root/buildmaster
diff options
context:
space:
mode:
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)