requireUser(); /* $report = CrashReport::getReport((int)$_GET["id"]); if (!$report) { print "

No such report

"; return; } $full = ReportParser::parse($report->id); //print_r (array_keys($full)); print "

Reported: " . date("r", (int)$report->reported). "

"; */ $stats = new CrashStats($filter); if (false === $r = $stats->getSignature((int)$_GET["signature_id"])) { print "

No such signature

"; } $parts = explode("|", $r->signature); $txt = ""; if ($parts[1]) $txt .= preg_replace("/((::|<|>|,|\\(|\\)))/", "\\1", htmlentities($parts[1])); if ($txt) $txt .= "

"; if ($parts[2]) $txt .= preg_replace("/((::|<|>|,|\\(|\\)))/", "\\1", htmlentities($parts[2])); print "

Module: " . $parts[0]; if ($txt) print "

" . $txt . "

";