叙述、别离 il y a 6 mois
Parent
révision
35f6be4d5a
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. +1
    -1
      src/system/archive/listview.class.php
  2. +1
    -1
      src/system/archive/sglistview.class.php

+ 1
- 1
src/system/archive/listview.class.php Voir le fichier

@@ -269,7 +269,7 @@ class ListView
}
} else {
$this->pagesize = isset($GLOBALS['PageSize'])? intval($GLOBALS['PageSize']) : 10;
$this->pagesize = $this->pagesize > 20? 20 : $this->pagesize;
$this->pagesize = $this->pagesize > 20 ? 20 : $this->pagesize;
}
$this->TotalPage = ceil($this->TotalResult / $this->pagesize);
}


+ 1
- 1
src/system/archive/sglistview.class.php Voir le fichier

@@ -228,7 +228,7 @@ class SgListView
}
} else {
$this->pagesize = isset($GLOBALS['PageSize'])? intval($GLOBALS['PageSize']) : 10;
$this->pagesize = $this->pagesize > 20? 20 : $this->pagesize;
$this->pagesize = $this->pagesize > 20 ? 20 : $this->pagesize;
}
$this->TotalPage = ceil($this->TotalResult / $this->pagesize);
}


Chargement…
Annuler
Enregistrer