Index: url_replace_filter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/url_replace_filter/url_replace_filter.module,v
retrieving revision 1.2
diff -u -p -r1.2 url_replace_filter.module
--- url_replace_filter.module	14 Aug 2007 03:13:41 -0000	1.2
+++ url_replace_filter.module	5 Nov 2008 22:17:19 -0000
@@ -102,4 +102,12 @@ function theme_url_replace_filter_settin
   $output .= t('<p>Enter original base URLs and their replacements. Matching is case-insensitive. You may use %baseurl in the replacement string to insert your site\'s base URL (without the trailing slash).</p><p><strong>Warning</strong>: To avoid unexpected results, you must include trailing slashes in both the original and replacement strings.</p><p><strong>Warning</strong>: Replacements are executed in the order you give them. Place the most specific URLs first. For example, <em>http://example.com/somepath/</em> should be replaced before <em>http://example.com/</em>.</p><p>If you need more replacement rules, more fields will be added after saving the settings.</p>');
   $output .= drupal_render($form);
   return $output;
+}
+
+function url_replace_filter_theme() {
+  return array(
+    'url_replace_filter_settings_form' => array(
+      'arguments' => array('form' => NULL),
+    ),
+  );
 }
\ No newline at end of file
