Skip to content
Code-Schnipsel Gruppen Projekte

Update 'next-3.x' with latest changes from 'main'

Zusammengeführt QUIQQER Stabilization schlägt vor, main in next-3.x zu mergen.
6 Dateien
+ 47
10
Änderungen vergleichen
  • Nebeneinander
  • In der Reihe
Dateien
6
@@ -28,7 +28,7 @@ public function __construct($attributes = [])
'order' => 'c_date ASC',
'showLinks' => true,
'template' => 'VerticalBothSides',
'limit' => 10
'limit' => false
]);
parent::__construct($attributes);
@@ -47,10 +47,10 @@ public function getBody(): string
$Engine = QUI::getTemplateManager()->getEngine();
$Control = new QUI\Timeline\Controls\Timeline();
$limit = $this->getAttribute('limit');
$limit = false;
if (!$limit || $limit < 1) {
$limit = 10;
if ($this->getAttribute('limit') >= 1) {
$limit = $this->getAttribute('limit');
}
$attributes = [