A few fixes and modifications in this release, most notably the disappearance of the trackback.php file as trackbacks are now managed by the PostComment.php plugin, and subject to spam check. I have yet to implement the getComments() method Jerome and I discussed lately, it should be ready in the next few days for the latest beta. Enjoy!
PreFormatted Plugin I’ve just finished the beta version of the “PreFormatted” WordPress plugin. Basically, it stores posts & comments in their final, formatted form rather than processing them every time a page is loaded. It provides only a modes...
Beta 2 looks good so far. I think I owe you a small patch or two, mostly for compatibility.
I have an Atom feed working now - even found a bug in Wordpress along the way! I'll put together a patch for you later.
Wonderful! Did not have time to integrate your patches yet. Superbusy with our commercial blogs. I also found a serious bug in WP 1.5
In line 158 of edit-form-advanced.php (no time to do a proper patch), add and change:
<?php $default_author_id = (empty($post_author) ? $user_ID : $post_author); ?> <select name="post_author_override" id="post_author_override"> <?php foreach ($users as $o) { if ( $default_author_id == $o->ID ) $selected = 'selected="selected"'; else $selected = ''; echo "<option value='$o->ID' $selected>" . "$o->user_login " . "($o->user_firstname $o->user_lastname)" . "</option>"; } ?>Nice catch. Just checked Mosquito and it's already been reported with a slightly different solution.