This commit is contained in:
Roland Schneider 2016-02-20 11:05:33 +01:00
commit b646678cc6

View File

@ -276,9 +276,10 @@ class DailyListing
} }
if ( !RoleDefinition::isAdmin() ){ if ( !RoleDefinition::isAdmin() ){
/*
if ( $this->isStartDateToEarly() ){ if ( $this->isStartDateToEarly() ){
$time = date( "Y-m-d H:i:s", strtotime("today -3 day") ); $time = date( "Y-m-d H:i:s", strtotime("today -3 day") );
$start_date_condition = ['or',[ '>=', 'transfer.created_at', $time ] ,[ '>=', 'transfer.paid_at', $time] ]; $start_date_condition = ['or',[ '>=', 'transfer.created_at', $time ] ,[ '>=', 'transfer.paid_at', $time] ];
@ -286,6 +287,7 @@ class DailyListing
$query->andFilterWhere( $start_date_condition ); $query->andFilterWhere( $start_date_condition );
} }
*/
} }
} }