requireUser(); $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 . "

";