From ed14541aea648605536c8180ab56f511013bce38 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Wed, 2 Oct 2013 16:44:38 +0200 Subject: [PATCH] Removed stray debug log write --- lib/private/template/functions.php | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/private/template/functions.php b/lib/private/template/functions.php index f0fd9999d9..6002113bdd 100644 --- a/lib/private/template/functions.php +++ b/lib/private/template/functions.php @@ -115,7 +115,6 @@ function relative_modified_date($timestamp, $dateOnly = false) { $diffhours = round($diffminutes/60); $diffdays = round($diffhours/24); $diffmonths = round($diffdays/31); - \OC_Log::write('functions', '################ ' . $timediff . ' ' . $diffhours, \OC_Log::DEBUG); if(!$dateOnly && $timediff < 60) { return $l->t('seconds ago'); } else if(!$dateOnly && $timediff < 3600) { return $l->n('%n minute ago', '%n minutes ago', $diffminutes); }