Closed (won't fix)
Project:
Event
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Jul 2008 at 10:22 UTC
Updated:
7 Sep 2008 at 01:05 UTC
Running upgrade.php fails because event.install tries to use a function from event.module, which isn't loaded. The following patch appears to solve that issue:
Index: event.install
===================================================================
--- event.install (revision 19)
+++ event.install (working copy)
@@ -1,6 +1,6 @@
<?php
// $Id: event.install,v 1.29 2008/04/30 00:33:24 killes Exp $
-
+require_once('event.module');
/**
* We need mysql >= 4.1.1
*/
Comments
Comment #1
killes@www.drop.org commentedWhich function would that be?
Comment #2
killes@www.drop.org commentedno answer received.