From 462e93c740a242f2044802dc767ceb6472bf0cf5 Mon Sep 17 00:00:00 2001 From: Roland Schneider Date: Sat, 20 Feb 2016 11:04:03 +0100 Subject: [PATCH] remove temporarly 3 days check from daily listing --- common/components/DailyListing.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/components/DailyListing.php b/common/components/DailyListing.php index e59fb88..b596f59 100644 --- a/common/components/DailyListing.php +++ b/common/components/DailyListing.php @@ -276,9 +276,10 @@ class DailyListing } if ( !RoleDefinition::isAdmin() ){ - + /* if ( $this->isStartDateToEarly() ){ + $time = date( "Y-m-d H:i:s", strtotime("today -3 day") ); $start_date_condition = ['or',[ '>=', 'transfer.created_at', $time ] ,[ '>=', 'transfer.paid_at', $time] ]; @@ -286,6 +287,7 @@ class DailyListing $query->andFilterWhere( $start_date_condition ); } + */ } }