diff options
Diffstat (limited to 'bug/view.php')
-rw-r--r-- | bug/view.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/view.php b/bug/view.php index 6b26860..5b627db 100644 --- a/bug/view.php +++ b/bug/view.php @@ -38,7 +38,7 @@ if($reports->rowCount() > 0) { <tr><th>Title</th><th>Description</th><th>Submitted by</th></tr> <?php foreach ($reports as $row) { - echo "<tr><td><a href=report/view.php?id=$row[id]>$row[title]</a></td> <td>" . truncate($row['description']) . "</td> <td>$row[user]</td></tr>\n"; + echo "<tr><td><a href={$config['urls']['base']}/report/view.php?id=$row[id]>$row[title]</a></td> <td>" . truncate($row['description']) . "</td> <td>$row[user]</td></tr>\n"; } ?> </table> |