Index: modules/scripturefilter/scripturefilter.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/scripturefilter/scripturefilter.module,v
retrieving revision 1.3
diff -u -r1.3 scripturefilter.module
--- modules/scripturefilter/scripturefilter.module	1 Oct 2004 00:08:35 -0000	1.3
+++ modules/scripturefilter/scripturefilter.module	30 Jun 2005 21:24:06 -0000
@@ -1,5 +1,5 @@
 <?php
-// $Id: scripturefilter.module,v 1.3 2004/10/01 00:08:35 uwe Exp $
+// $Id: scripturefilter.module,v 1.3.1 2005/6/30 00:08:35 Eaton Exp $
 
 function scripturefilter_help($section) {
   switch ($section) {
@@ -12,7 +12,7 @@
   return t('Turns any Scripture reference into a link to BibleGateway, the ESV or NET Bibles.');
 }
 
-function scripturefilter_filter($op, $text = '') {
+function scripturefilter_filter($op, $delta = 0, $format = -1, $text = '') {
  include_once 'scripturefilter.inc';
   switch ($op) {
     case 'name':
@@ -24,10 +24,8 @@
       return t('Turns any Scripture reference into a link to BibleGateway, the ESV or NET Bibles.');
 
     case 'process':
-      //$text = ' '.$text.' '
-      //$text = scripturize($text)
       return scripturize($text);
-     
+        
     case 'settings':
        return form_group(t('Scripture filter'), t('This filter enables content that has a reference to Scripture to be linked against several on-line databases, such as BibleGateway, the ESV online Bible and the NET Bible. It was originally a Perl plug-in, converted to PHP for use in Wordpress and now converted to a Drupal module.'));
 
@@ -37,4 +35,4 @@
 }
 
 
-?>
+?>
\ No newline at end of file
