summaryrefslogtreecommitdiff
path: root/web-scripts/todos.php
diff options
context:
space:
mode:
Diffstat (limited to 'web-scripts/todos.php')
-rw-r--r--web-scripts/todos.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/web-scripts/todos.php b/web-scripts/todos.php
index e4ab2c9..49bb9ac 100644
--- a/web-scripts/todos.php
+++ b/web-scripts/todos.php
@@ -18,7 +18,7 @@ if ($result -> num_rows > 0) {
while ($row = $result->fetch_assoc())
$knot_rows[$row["id"]] =
- $row["file"]. " (line ".$row["line"]."):\\n".$row["description"];
+ $row["file"]. " (line ".$row["line"]."):\\n".str_replace("\"","\\\"",$row["description"]);
unset($knots);
foreach ($knot_rows as $knot)