diff --git a/bridges/ZoneTelechargementBridge.php b/bridges/ZoneTelechargementBridge.php index caa32c38..4a53c53a 100644 --- a/bridges/ZoneTelechargementBridge.php +++ b/bridges/ZoneTelechargementBridge.php @@ -51,7 +51,8 @@ class ZoneTelechargementBridge extends BridgeAbstract { // Add every link available in the episode table separated by a
tag $item['content'] = implode('
', $episode); $item['title'] = $this->showTitle . 'Episode ' . $epnum; - $this->items[] = $item; + // Insert the episode at the beginning of the item list, to show the newest episode first + array_unshift($this->items, $item); } }