diff options
author | Urban Müller | 2019-06-06 15:09:11 +0200 |
---|---|---|
committer | Urban Müller | 2019-06-06 15:09:11 +0200 |
commit | 0bbd8aea0363104e2d79542a5f0377edc3d0b3ff (patch) | |
tree | 691b05bb530c436118f174100c552f6dd3902ac7 /it.class | |
parent | 59d4b9d393baa1e0e62ba67a7ecda9c1d4607a7a (diff) | |
download | itools-0bbd8aea0363104e2d79542a5f0377edc3d0b3ff.tar.gz itools-0bbd8aea0363104e2d79542a5f0377edc3d0b3ff.tar.bz2 itools-0bbd8aea0363104e2d79542a5f0377edc3d0b3ff.zip |
fix possible misunderstandings
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -257,7 +257,7 @@ static function error($p = array()) ($p['omitdebuginfo'] >= 2 ? "" : ($url && !$toscreen? "{$p['title']}\n\nUrl: $url\n\n" : "") . ($trace ? ($sendmail ? "" : " ") . "Trace: $trace\n\n" : "")) . (!$sendmail || $p['omitdebuginfo'] >= 2 ? "" : "Host: " . getenv('HOSTNAME') . "\n\n") . - (!$sendmail || $p['omitdebuginfo'] >= 2 ? "" : "Time: " . date("Y-m-d H:i:s") . (($t = time() - $_SERVER['REQUEST_TIME']) ? " (started {$t}s before)" : "") . "\n\n") . # no it::date() due to time- debug param + (!$sendmail || $p['omitdebuginfo'] >= 2 ? "" : "Time: " . date("Y-m-d H:i:s") . (($t = time() - $_SERVER['REQUEST_TIME']) ? " (invoked {$t}s before)" : "") . "\n\n") . # no it::date() due to time- debug param ($p['body'] ? ($p['omitdebuginfo'] ? "" : "Body:\n") . trim($p['body'])."\n\n" : ""); if ($sendmail) # we're mailing: send maximum info |