This version use module_exist API of drupal 5.x

The patch is very simple, repleace the 5.0 api with the 4.7

(<)Z:\xampplite\htdocs\changeme\modules\signup\signup.module (My version)
(>)Z:\xampplite\htdocs\changeme\modules\signup\signup.module3 (StdCVS Version)
607c606
< $has_event = module_exist('event');
---
> $has_event = module_exists('event');
827c826
< $has_event = module_exist('event');
---
> $has_event = module_exists('event');

Comments

dww’s picture

Status: Reviewed & tested by the community » Fixed

committed to DRUPAL-4-7. thanks!

p.s. in the future, please post a real patch if you can:
http://drupal.org/patch
http://drupal.org/diffandpatch

Anonymous’s picture

Status: Fixed » Closed (fixed)