Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / core / modules / views / src / Plugin / views / display / Page.php
index aca0683f3c599a1143ed72a3c6e771356d2af48e..baf1434449e7c1c98edd11df72616f730d8ed437 100644 (file)
@@ -84,6 +84,18 @@ class Page extends PathPluginBase {
     );
   }
 
+  /**
+   * {@inheritdoc}
+   */
+  protected function getRoute($view_id, $display_id) {
+    $route = parent::getRoute($view_id, $display_id);
+
+    // Explicitly set HTML as the format for Page displays.
+    $route->setRequirement('_format', 'html');
+
+    return $route;
+  }
+
   /**
    * Sets the current page views render array.
    *