diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php
index acd35b348..627c8cd9a 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),