Index: simplepie.admin.inc
===================================================================
RCS file: simplepie.admin.inc
diff -N simplepie.admin.inc
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ simplepie.admin.inc	14 May 2009 05:29:42 -0000
@@ -0,0 +1,26 @@
+<?php
+// $Id$
+
+/**
+ * @file
+ * Admin page callback and other admin page related functions.
+ */
+
+/**
+ * Form builder; Configure the SimplePie settings.
+ *
+ * @ingroup forms
+ * @see system_settings_form()
+ */
+function simplepie_admin_settings() {
+  $form['simplepie_cache_location'] = array(
+    '#type' => 'textfield',
+    '#title' => t('SimplePie Core cache location'),
+    '#description' => t('Relative to files directory.'),
+    '#default_value' => variable_get('simplepie_cache_location', 'cache/simplepie'),
+    '#attributes' => array('class' => file_check_directory(simplepie_get_cache_location()) ? 'ok' : 'error'),
+    '#after_build' => array('system_check_directory'),
+  );
+
+  return system_settings_form($form);
+}
Index: simplepie.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/simplepie/simplepie.module,v
retrieving revision 1.11.4.5
diff -u -p -r1.11.4.5 simplepie.module
--- simplepie.module	13 May 2009 05:55:48 -0000	1.11.4.5
+++ simplepie.module	14 May 2009 05:29:42 -0000
@@ -29,23 +29,11 @@ function simplepie_menu() {
     'page callback' => 'drupal_get_form',
     'page arguments' => array('simplepie_admin_settings'),
     'access arguments' => array('administer site configuration'),
+    'file' => 'simplepie.admin.inc',
   );
   return $items;
 }
 
-function simplepie_admin_settings() {
-  $form['simplepie_cache_location'] = array(
-    '#type' => 'textfield',
-    '#title' => t('SimplePie Core cache location'),
-    '#description' => t('Relative to files directory.'),
-    '#default_value' => variable_get('simplepie_cache_location', 'cache/simplepie'),
-    '#attributes' => array('class' => file_check_directory(simplepie_get_cache_location()) ? 'ok' : 'error'),
-    '#after_build' => array('system_check_directory'),
-  );
-
-  return system_settings_form($form);
-}
-
 /**
  * Returns the path of the SimplePie library.
  */
