index : archweb32 | |
Archlinux32 website | gitolite user |
summaryrefslogtreecommitdiff |
-rw-r--r-- | buildmaster/todos.php | 4 |
diff --git a/buildmaster/todos.php b/buildmaster/todos.php index d2c42dc..d6ad5f8 100644 --- a/buildmaster/todos.php +++ b/buildmaster/todos.php @@ -19,7 +19,7 @@ if (isset($_GET["graph"])) { $knot_rows[$row["id"]] = $row["file"]. " (line ".$row["line"]."):\\n".str_replace("\"","\\\"",$row["description"]); - unset($knots); + $knots=""; foreach ($knot_rows as $knot) $knots=$knots . "\"" . $knot . "\";\n"; @@ -42,7 +42,7 @@ if (isset($_GET["graph"])) { $count++; } - unset($edges); + $edges=""; foreach ($link_rows as $link) $edges=$edges . "\"" . $link["depending_on"] . "\" -> \"" . $link["dependent"] . "\";\n"; } |