]> git.mxchange.org Git - friendica-addons.git/commitdiff
Cleaned up parameters
authorMichael <heluecht@pirati.ca>
Thu, 10 Dec 2020 00:03:00 +0000 (00:03 +0000)
committerMichael <heluecht@pirati.ca>
Thu, 10 Dec 2020 00:03:00 +0000 (00:03 +0000)
rendertime/rendertime.php

index acd35b3486b343dcb628c8e7b61f9308e4a6c150..627c8cd9a8e2a2f2210817469f03abd38e733f1f 100644 (file)
@@ -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 . '<div class="renderinfo">' . 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 . '<div class="renderinfo">' . 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),