? spaces_excluded_paths_828334-1.patch
? spaces_excluded_paths_828334-8.patch
Index: spaces.install
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spaces/spaces.install,v
retrieving revision 1.1.4.6.2.3.2.7
diff -u -p -r1.1.4.6.2.3.2.7 spaces.install
--- spaces.install	6 Aug 2010 16:37:14 -0000	1.1.4.6.2.3.2.7
+++ spaces.install	16 Nov 2010 21:43:43 -0000
@@ -13,6 +13,7 @@ function spaces_install() {
  */
 function spaces_uninstall() {
   drupal_uninstall_schema('spaces');
+  variable_del('spaces_purl_excluded_paths_override');
 }
 
 /**
Index: plugins/space_type_purl.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/spaces/plugins/Attic/space_type_purl.inc,v
retrieving revision 1.1.2.5
diff -u -p -r1.1.2.5 space_type_purl.inc
--- plugins/space_type_purl.inc	11 Aug 2010 02:17:46 -0000	1.1.2.5
+++ plugins/space_type_purl.inc	16 Nov 2010 21:43:43 -0000
@@ -25,7 +25,8 @@ class space_type_purl extends space_type
    * Return an array of paths from which the space should never be active.
    */
   protected function excluded_paths() {
-    return array('features', 'features/*', 'admin', 'admin/*');
+    return variable_get('spaces_purl_excluded_paths_override',
+      array('features', 'features/*', 'admin', 'admin/*'));
   }
 
   /**
