From ac2889a3b1ce77e9c77450bffb6d1a9d16db50d1 Mon Sep 17 00:00:00 2001
From: Christopher Gervais <chris@ergonlogic.com>
Date: Wed, 21 Dec 2011 15:40:38 +0000
Subject: [PATCH 1/2] moved feature hook to .inc

---
 modules/hosting/client/hosting.feature.client.inc |   17 +++++++++++++++++
 modules/hosting/client/hosting_client.module      |   14 --------------
 2 files changed, 17 insertions(+), 14 deletions(-)
 create mode 100644 modules/hosting/client/hosting.feature.client.inc

diff --git a/modules/hosting/client/hosting.feature.client.inc b/modules/hosting/client/hosting.feature.client.inc
new file mode 100644
index 0000000..50f0e9a
--- /dev/null
+++ b/modules/hosting/client/hosting.feature.client.inc
@@ -0,0 +1,17 @@
+<?php
+
+/**
+ * Implementation of hook_hosting_feature().
+ */
+function hosting_client_hosting_feature() {
+  $features['client'] = array(
+      'title' => t('Clients'),
+      'description' => t('Track and manage ownership of hosted sites.'),
+      'status' => HOSTING_FEATURE_DISABLED,
+      'node' => 'client',
+      'group' => 'experimental',
+    );
+  return $features;
+}
+
+
diff --git a/modules/hosting/client/hosting_client.module b/modules/hosting/client/hosting_client.module
index a927015..42bb860 100644
--- a/modules/hosting/client/hosting_client.module
+++ b/modules/hosting/client/hosting_client.module
@@ -33,20 +33,6 @@ function hosting_client_node_info() {
 }
 
 /**
- * Implementation of hook_hosting_feature().
- */
-function hosting_client_hosting_feature() {
-  $features['client'] = array(
-      'title' => t('Clients'), 
-      'description' => t('Track and manage ownership of hosted sites.'),
-      'status' => HOSTING_FEATURE_DISABLED,
-      'node' => 'client',
-      'group' => 'experimental',
-    );
-  return $features;
-}
-
-/**
  * Implementation of hook_theme().
  */
 function hosting_client_theme($existing, $type, $theme, $path) {
-- 
1.7.2.5

