浏览代码

[backend] Rapport : correctif bug liste années

dev
Guillaume 4 年前
父节点
当前提交
63348dc065
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      backend/controllers/ReportController.php

+ 2
- 2
backend/controllers/ReportController.php 查看文件

@@ -81,10 +81,10 @@ class ReportController extends BackendController
// distributions
$firstDistribution = Distribution::searchOne([], [
'orderby' => 'id ASC'
'orderby' => 'date ASC'
]) ;
$lastDistribution = Distribution::searchOne([], [
'orderby' => 'id DESC'
'orderby' => 'date DESC'
]) ;
$firstYear = date('Y',strtotime($firstDistribution->date)) ;

正在加载...
取消
保存