Merge pull request #8886 from annando/getidforurl-update

in "getidforurl" "no update" is now "update"
This commit is contained in:
Hypolite Petovan 2020-07-16 09:23:30 -04:00 committed by GitHub
commit dd85f48e0d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
28 changed files with 96 additions and 90 deletions

View file

@ -177,7 +177,7 @@ class Profiler implements ContainerInterface
$output .= "\nDatabase Read:\n";
foreach ($this->callstack["database"] as $func => $time) {
$time = round($time, 3);
if ($time > 0.001) {
if ($time > 0) {
$output .= $func . ": " . $time . "\n";
}
}