Procházet zdrojové kódy

[backend] Rapport : correctif bug liste années

refactoring
Guillaume před 4 roky
rodič
revize
63348dc065
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      backend/controllers/ReportController.php

+ 2
- 2
backend/controllers/ReportController.php Zobrazit soubor

@@ -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)) ;

Načítá se…
Zrušit
Uložit