From f11b6a1080022c20e692c542490bd699746a0217 Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 10 Dec 2020 00:03:00 +0000 Subject: [PATCH] Cleaned up parameters --- rendertime/rendertime.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php index acd35b34..627c8cd9 100644 --- a/rendertime/rendertime.php +++ b/rendertime/rendertime.php @@ -50,8 +50,7 @@ function rendertime_page_end(Friendica\App $a, &$o) $total = microtime(true) - $profiler->get('start'); $rest = $total - ($profiler->get('ready') - $profiler->get('start')) - $profiler->get('init') - $profiler->get('content'); - $o = $o . '
' . DI::l10n()->t("Class-Create: %s, Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s", - round($profiler->get('classcreate') - $profiler->get('start'), 3), + $o = $o . '
' . DI::l10n()->t("Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s", round($profiler->get('classinit') - $profiler->get('start'), 3), round($profiler->get('ready') - $profiler->get('classinit'), 3), round($profiler->get('init'), 3),