summaryrefslogtreecommitdiff
path: root/dockets.php
diff options
context:
space:
mode:
authorNathan Kinkade <nath@nkinka.de>2014-02-07 17:59:14 +0000
committerNathan Kinkade <nath@nkinka.de>2014-02-07 17:59:14 +0000
commit5f276a29ae0041b63ec84bef909fdb11cb3f8751 (patch)
treeedc0c6b66c700dc538c584540bed37d9efda5c00 /dockets.php
parent679a95e4e08855b5b5d376a124b8ea6304edbce1 (diff)
Make court case number link back to main case information page.
Diffstat (limited to 'dockets.php')
-rw-r--r--dockets.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/dockets.php b/dockets.php
index 9edb3cc..6cba902 100644
--- a/dockets.php
+++ b/dockets.php
@@ -26,7 +26,7 @@ echo <<<HTML
HTML;
-echo "<h3>Dockets for case <em>{$_GET['case_no']}</h3>";
+echo "<h3>Dockets for case <a href='./search.php?case_id={$_REQUEST['case_id']}'><em>{$_GET['case_no']}</em></a></h3>";
$st = $dbh->prepare("SELECT * FROM dockets WHERE case_id = '{$_GET['case_id']}'");
if ( $st->execute() ) {