From f3594904c2d2b4a1296ee7dcc65a0c6cefa9ab40 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Fri, 4 Oct 2013 14:45:12 +0200 Subject: [PATCH] Removed $fromTime argument from public template API --- lib/public/template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/public/template.php b/lib/public/template.php index 8800f5c856e..a5c500b0e25 100644 --- a/lib/public/template.php +++ b/lib/public/template.php @@ -90,8 +90,8 @@ function human_file_size( $bytes ) { * @param $timestamp unix timestamp * @returns human readable interpretation of the timestamp */ -function relative_modified_date($timestamp, $fromTime = null, $dateOnly = false) { - return(\relative_modified_date($timestamp, $fromTime, $dateOnly)); +function relative_modified_date($timestamp, $dateOnly = false) { + return(\relative_modified_date($timestamp, null, $dateOnly)); } -- 2.39.5