From 5697078cc01d9057395c9b97c564765a4e356f3d Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Thu, 27 Dec 2018 12:56:15 +0100 Subject: [PATCH] Fix #77355: Filing a ticket links to the Edit tab of potential duplicates We should link to the ticket generally, instead of the Edit tab. --- www/report.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/report.php b/www/report.php index 49fb1f97..b5e4ebe0 100644 --- a/www/report.php +++ b/www/report.php @@ -127,7 +127,7 @@ $summary = substr(trim($summary), 0, 256) . ' ...'; } - $bug_url = "bug.php?id={$row['id']}&edit=2"; + $bug_url = "bug.php?id={$row['id']}"; $sdesc = htmlspecialchars($row['sdesc']); $summary = htmlspecialchars($summary);