[rendertime] Fix empty minimal_time

pull/1323/head
Philipp 2022-11-28 19:51:56 +01:00
parent 25bcbabb58
commit 3b7d4ce600
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ function rendertime_page_end(App $a, string &$o)
if ($profiler->isRendertime()) {
$o .= '<pre>';
$o .= $profiler->getRendertimeString(DI::config()->get('rendertime', 'minimal_time', 0));
$o .= $profiler->getRendertimeString(floatval(DI::config()->get('rendertime', 'minimal_time', 0)));
$o .= '</pre>';
}
}