Page 1 of 1

Email Entry Plugin

Posted: Mon Apr 18, 2005 7:56 pm
by n2ition
I have installed the "event mailentry" plugin and it sends the email just fine. However the url it provides is leaving out the /index.php before the /archives/post_title.html so I get an page not found error when trying to access the post through the link.

Seems to me it is probably a really simple fix...but I don't know php, so I'm not sure what I should be looking for.

Re: Email Entry Plugin

Posted: Mon Apr 18, 2005 9:31 pm
by garvinhicking
I've just committed the fix.

In the plugin file just replace

Code: Select all

$serendipity['baseURL'] . serendipity_archiveURL($eventData['id'], $eventData['title'], '', false),
with

Code: Select all

$serendipity['baseURL'] . serendipity_archiveURL($eventData['id'], $eventData['title'], '', true),
notice the false/true boolean.

Regards,
Garvin