Blog - Archive pagination fixed
I had a bug in pagination when navigating through categories or dates
It was due to a customization I made sometime ago to make Wordpress 2.5 work o a IIS web server.
Instead of
$_SERVER[’REQUEST_URI’]=’/page/1′;
It must be
if($_SERVER['REQUEST_URI']=='') $_SERVER[’REQUEST_URI’]=’/page/1′;
Shame on me ![]()


