Quote:
Originally Posted by WetWired
The root cause of the problem is globals.php being included multiple times, or global_start, at least. If you can't figure out why global_start is running twice, you could modify the activity mod's global_start plugin by wrapping the whole thing in
Code:
if(!$WWU002globalstartonce++){
}
which should prevent that specific plugin from executing twice.
|
That worked, thank you very much!! :up: