Using drupal 7 (dev) , Php 5.3.3 I got

[07-Oct-2010 17:59:19] PHP Fatal error: Call to undefined function _textile_process_match() in /srv/www/vhosts/xxxxxxxxxxx/sites/all/modules/textile/textile.module on line 82

So I patch :
--- textile.module.ori 2010-08-01 00:14:47.000000000 +0200
+++ textile.module 2010-10-07 18:05:04.792250569 +0200
@@ -79,7 +79,7 @@ function _textile_process($text, $filter
return preg_replace_callback('{\[textile\](.*?)(\[/textile\]|$)}is', '_textile_match_process', $text);
}
else {
- return _textile_process_match(array(NULL, $text));
+ return _textile_match_process(array(NULL, $text));
}
}

And I work!

Comments

Anonymous’s picture

Title: How textile module can work ? » Call to undefined function _textile_process_match()
Anonymous’s picture

Status: Active » Fixed

The code has been changed, and committed.

Thank you for your report.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.