Juanita @ WP Page Numbers

Juanita

fixed that bug in the plugin file wp-page-numbers.php
change
if($max_page > 1)
echo $start . $pagingString . $end;
}

to

if($max_page > 1)
//added variables start end – Juanita Chronowski
$start = ”\n”;
$end = ”\n”;
echo $start . $pagingString . $end;
}