Quote:
Originally Posted by Tolas
Discovered the same problem today.
Event is scheduled for tomorrow night, it disabled signups for the event, even though I have the options set to never disabled signups.
**Edit**
Seems to only affect one event now, the rest appear fine thus far. I will look into how my user created the event and see if maybe something was done differently. I'll post again if I continue to see this happen on more events.
|
We still need a fix on this :|
Bump for help this time?
EDIT: I went though the script and managed to get it so the calendar will never close. If your fine with that, here is the fix:
Go to admincp > Plugin Manager > gWE: Add signups to Event Description
Find:
PHP Code:
// Allow Post signup
if(TIMENOW <= $eventinfo['dateline_from_user'])
{
$eventinfo['gwe_post_signup'] = true;
}
else
{
$eventinfo['gwe_post_signup'] = false;
}
Replace:
$eventinfo['gwe_post_signup'] = false;
With:
$eventinfo['gwe_post_signup'] = true;
-------------------
Hope that helps