From: Michael Vogel Date: Thu, 23 Jun 2016 18:26:50 +0000 (+0200) Subject: Rendertime: Show the value for session creation X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b6a44a2339b11e79091a459bd57431aaa8853e80;p=friendica-addons.git Rendertime: Show the value for session creation --- diff --git a/rendertime/rendertime.php b/rendertime/rendertime.php index 1f45bc2d..548775a1 100755 --- a/rendertime/rendertime.php +++ b/rendertime/rendertime.php @@ -27,11 +27,11 @@ function rendertime_page_end(&$a, &$o) { $duration = microtime(true)-$a->performance["start"]; if (is_site_admin() AND ($_GET["mode"] != "minimal") AND !$a->is_mobile AND !$a->is_tablet) { - $o = $o.'
'.sprintf(t("Database: %s, Network: %s, Rendering: %s, I/O: %s, Other: %s, Total: %s"), + $o = $o.'
'.sprintf(t("Database: %s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s"), round($a->performance["database"], 3), round($a->performance["network"], 3), round($a->performance["rendering"], 3), - // round($a->performance["parser"], 3), // Not used anymore + round($a->performance["parser"], 3), round($a->performance["file"], 3), round($duration - $a->performance["database"] - $a->performance["network"] - $a->performance["rendering"] - $a->performance["parser"]