Has anyone gotten this to work with Serendipity? If you have can you let me know how

I have just started using it on another of my blogs its a great little tool

I played around with some blogTools but havnt got one working yet.Mecca wrote:http://blog.warmbrain.com/justblogit/
Code: Select all
http://yourblog.domain/serendipity_entries.php?serendipity[adminModule]=entries&serendipity[adminAction]=new&serendipity[title]=%TITLE%&serendipity[body]=%TEXT%&serendipity[url]=%URL%
Code: Select all
if (!empty($serendipity['GET']['title'])) {
$entry['title'] = utf8_decode(urldecode($serendipity['GET']['title']));
}
if (!empty($serendipity['GET']['body'])) {
$entry['body'] = utf8_decode(urldecode($serendipity['GET']['body']));
}
if (!empty($serendipity['GET']['url'])) {
$entry['body'] .= "\n" . '<br /><a href="' . htmlspecialchars(utf8_decode(urldecode($serendipity['GET']['url']))) . '">' . $entry['title'] . '</a>';
}