After much ado, I’ve made a couple tweaks to Lester’s plugin which will allow it to work with WP 1.5 (if anyone is interested)
on line 42, change
$post = $wpdb->get_row("SELECT $tableposts.ID, post_name, post_date, post_title, post_content, user_nickname FROM $tableposts LEFT JOIN $tableusers ON $tableusers.ID = $tableposts.post_author WHERE $tableposts.ID = $p AND post_date_gmt <= '$now' AND post_status = 'publish' AND post_password = ''");
to
$post = $wpdb->get_row("SELECT post_name, post_date, post_title, post_content, post_author FROM wp_posts WHERE ID = '$p' AND post_status = 'publish' AND post_password = ''");
and on line 48, change:
$user_nickname = htmlspecialchars(stripslashes($post->user_nickname));
to
$post_author = htmlspecialchars(stripslashes($post->post_author));
and on line 62 and 63, make sure to change $user_nickname to $post_author
and on line 86, change:
<?php if ($post) { start_wp(); ?>
to
<?php if (have_posts()) { the_post(); ?>
After that you should be good to go ?? – if you want to integrate it with your theme, drop in <?php get_header(); ?> just above <?php if (have_posts()) { the_post(); ?> and <?php get_footer(); ?> on the very last line.
HTH someone