userprofiles plugin: error/fix
Posted: Fri May 25, 2007 6:05 pm
Sorry if this has posted previously, but I tried to install the event_userprofiles plugin today via Spartacus and it crashed my installation. The culprit was a single line of code in serendipity_events_userprofiles.php
line 286 which reads
$group = serendipity_fetchGroup((int)$serendipity['GET']['groupid'])
should be:
$group = serendipity_fetchGroup((int)$serendipity['GET']['groupid']);
That's it. thanks.
line 286 which reads
$group = serendipity_fetchGroup((int)$serendipity['GET']['groupid'])
should be:
$group = serendipity_fetchGroup((int)$serendipity['GET']['groupid']);
That's it. thanks.