From abf2f079c52bdf216d232df048368c47004cb6e0 Mon Sep 17 00:00:00 2001 From: rabuzarus <> Date: Wed, 22 Jun 2016 14:14:27 +0200 Subject: [PATCH 1/2] mark cal addon as unsupported becaus it was moved to core with https://github.com/friendica/friendica/pull/2628 --- cal/cal.php | 1 + 1 file changed, 1 insertion(+) diff --git a/cal/cal.php b/cal/cal.php index 38f10462..5c2f1021 100644 --- a/cal/cal.php +++ b/cal/cal.php @@ -5,6 +5,7 @@ * Version: 0.1 * Author: Tobias Diekershoff * License: MIT + * Status: Unsupported * ******************************************************************/ -- 2.45.3 From b6a44a2339b11e79091a459bd57431aaa8853e80 Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 23 Jun 2016 20:26:50 +0200 Subject: [PATCH 2/2] Rendertime: Show the value for session creation --- rendertime/rendertime.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"] -- 2.45.3