From 442edbd46f3e52e7eb6fa003f757d6680821a104 Mon Sep 17 00:00:00 2001
From: Neil Drumm <drumm@delocalizedham.com>
Date: Tue, 30 Oct 2012 13:39:47 -0700
Subject: [PATCH] [#1827320] Leave a flag for 7.x updates so we have an
 upgrade path.

---
 apachesolr.install |    9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/apachesolr.install b/apachesolr.install
index 68c2c96..5a73825 100644
--- a/apachesolr.install
+++ b/apachesolr.install
@@ -285,6 +285,7 @@ function apachesolr_uninstall() {
   variable_del('apachesolr_read_only');
   variable_del('apachesolr_set_nodeapi_messages');
   variable_del('apachesolr_last_optimize');
+  variable_del('apachesolr_update_from_6303');
   // Remove tables.
   drupal_uninstall_schema('apachesolr');
   // Remove blocks.
@@ -365,3 +366,11 @@ function apachesolr_update_6302() {
   }
   return $ret;
 }
+
+/**
+ * Leave a flag for 7.x updates so we have an upgrade path.
+ */
+function apachesolr_update_6303() {
+  variable_set('apachesolr_update_from_6303', TRUE);
+  return array();
+}
-- 
1.7.10.2 (Apple Git-33)

