diff --git a/default_views.patch b/default_views_minimum_version.patch
index 899d61c..1eb3e19 100644
--- a/default_views.patch
+++ b/default_views_minimum_version.patch
@@ -83,7 +83,7 @@ index 590592d..129a998 100644
  /**
 diff --git a/includes/php4.inc b/includes/php4.inc
 new file mode 100644
-index 0000000..c04d309
+index 0000000..a4376c6
 --- /dev/null
 +++ b/includes/php4.inc
 @@ -0,0 +1,93 @@
@@ -117,7 +117,7 @@ index 0000000..c04d309
 +        if (!empty($results) && is_array($results)) {
 +          foreach($results as $name => $view) {
 +            // Only views with a sufficiently high api version are eligible.
-+            if (!empty($view->api_version) && $view->api_version >= 2) {
++            if (!empty($view->api_version) && $view->api_version >= views_api_minimum_version()) {
 +              // Do not cache dead handlers.
 +              $view->destroy();
 +              if (!isset($cache[$name])) {
@@ -182,7 +182,7 @@ index 0000000..c04d309
 +}
 diff --git a/includes/php5.inc b/includes/php5.inc
 new file mode 100644
-index 0000000..9fd8d1d
+index 0000000..1aae6ff
 --- /dev/null
 +++ b/includes/php5.inc
 @@ -0,0 +1,214 @@
@@ -393,7 +393,7 @@ index 0000000..9fd8d1d
 +  if ($result) {
 +    drupal_alter('views_default_views', $result);
 +    foreach ($result as $key => $view) {
-+      if (!empty($view->api_version) && $view->api_version >= 2) {
++      if (!empty($view->api_version) && $view->api_version >= views_api_minimum_version()) {
 +        $views[$key] = $view;
 +      }
 +    }
@@ -401,10 +401,10 @@ index 0000000..9fd8d1d
 +  return $views;
 +}
 diff --git a/views.module b/views.module
-index c24f9f6..840ee10 100644
+index 37c82a1..138c21e 100644
 --- a/views.module
 +++ b/views.module
-@@ -918,7 +918,7 @@ function views_get_localization_plugin() {
+@@ -952,7 +952,7 @@ function views_get_localization_plugin() {
   * @return
   *   A view object or NULL if it is not available.
   */
@@ -413,7 +413,7 @@ index c24f9f6..840ee10 100644
    $null = NULL;
  
    // Attempt to load individually cached view from cache.
-@@ -1027,36 +1027,20 @@ function views_get_applicable_views($type) {
+@@ -1061,36 +1061,20 @@ function views_get_applicable_views($type) {
   *   If TRUE, reset the static cache forcing views to be reloaded.
   */
  function views_get_all_views($reset = FALSE) {
