This module requires classTextile.php to work, but unfortunately, using require_once() causes your site to WSOD if the file is not present.
This has bitten me lots of time, since upgrading modules with drush will result in this file missing, as it does not ship with the module, and suddenly the site is broken and no one knows why.
I suggest you use include_once() instead, since that will not break the site completely, but instead provide nice error messages in the watchdog log (missing includes is a non-fatal error), making the problem much easier to diagnose.
Comments
Comment #1
beltofte+1 :-)
Comment #2
Anonymous (not verified) commentedThe code should actually use
module_load_include()and verify if the library file exists before to try to load it.The implementation of
hook_requirements()should be sufficient to report to the administrators the reason why the module is not working.Comment #3
Anonymous (not verified) commentedThank you for your report. I have changed the code, committed it, and created a new official release (http://drupal.org/node/1032146).