From 76d976bd078e9985855aa8649e121a298bf154f8 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Thu, 4 May 2023 17:18:02 +0200 Subject: adapt to standard syntax --- it.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'it.class') diff --git a/it.class b/it.class index 935ec98..debbe96 100644 --- a/it.class +++ b/it.class @@ -294,7 +294,7 @@ static function error($p = array(), $extra = null) $reqbody = it::file_get_contents("php://input"); $body .= ($trace and $t = it::exec('grep -h {0} `ls {1}/log/alertlog-*|tail -3` /dev/null 2>/dev/null | grep ^2 | cut -d : -f 1-2 | sort | uniq -c | tail -10', $trace, $home)) ? "Histogram: (last 10 affected minutes in 3 days)\n$t\n" : ""; - $body .= $mediumstack ? "Stack:\n " . it::replace("\n" => "\n ", $mediumstack) . "\n" : ""; + $body .= $mediumstack ? "Stack:\n " . it::replace(["\n" => "\n "], $mediumstack) . "\n" : ""; $body .= $_GET ? "\$_GET: " . var_export($_GET, true) . "\n\n" : ""; $body .= $_POST ? "\$_POST: " . var_export($_POST, true) . "\n\n" : ""; $body .= $reqbody ? "\$reqbody: " . var_export($reqbody, true) . "\n\n" : ""; -- cgit v1.2.3