// wp-phplist 2.10.9 - we buffer the output from phplist, then stick it into the $html variable
ob_start();
//echo "";
require "../../../$wp_phplist_phplist_path/index.php";
$html = ob_get_clean();
// now we clean up the html.. the line below is essential for proper operation
$html = str_replace('/?p', "/$wp_phplist_slug?p", $html);
// these lines are optional - you may want to alter the html that phplist spits out, to fit the design of your blog
$html = str_replace('710', '450', $html);
$html = str_replace('708', '448', $html);
// print the modified html
echo $html;
?>
