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
Comment #1
Anonymous (not verified) commentedComment #2
Anonymous (not verified) commentedThe code has been changed, and committed.
Thank you for your report.