Index: modules/views/src/Form/ViewsForm.php
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
===================================================================
--- a/modules/views/src/Form/ViewsForm.php	(revision )
+++ b/modules/views/src/Form/ViewsForm.php	(revision )
@@ -157,7 +157,12 @@
     $query = UrlHelper::filterQueryParameters($query, array(), '');
 
     $options = array('query' => $query);
-    $form['#action'] = $view->hasUrl() ? $view->getUrl()->setOptions($options)->toString() : Url::fromRoute('<current>')->setOptions($options)->toString();
+    if (isset($view->override_path)) {
+      $form['#action'] = $view->override_path;
+    }
+    else {
+      $form['#action'] = $view->hasUrl() ? $view->getUrl()->setOptions($options)->toString() : Url::fromRoute('<current>')->setOptions($options)->toString();
+    }
     // Tell the preprocessor whether it should hide the header, footer, pager,
     // etc.
     $form['show_view_elements'] = array(
