Bug fix version Preview 3
September 19, 2007
It’s time for a another bug fix version:
- Fixed: Now works (again) with non-US-ASCII characters:;
I searched quite a while for the solution but a simple "addslashes()" over all option fixed it. - Fixed: Pagebar no longer appears in feeds:
As I promised pagebar will eventually kill your cat. Well, not your cat but it killed your feeds and they haven’t been well formed so that some aggregators refused them. (Thanks to Mike of www.trash-wissen.de)

Hi,
very nice plugin!
You should change the URI provided in the php-file of the plugin, because it links to an invalid location (http://www.elektroelch.de/hacks/wp/pagebar.html instead of http://www.elektroelch.de/hacks/wp/pagebar/).
Regards,
Marco
Great plugin! Is it possible to make a “random page” button to the right?
Could be easily done but I don’t want to implement such a feature. Sorry.
For a Random page just add the following function:
function randomPage($max_page) {
global $pbOptions;
if ($pbOptions["pdisplay"] == “never”)
return;
$text = “I feel lucky!”;
srand(time());
$random = (rand()%$max_page);
echo ‘ ‘.$text.’‘;
}
and then call it from the bottom of the calling pagebar function:
randomPage($max_page);
[...] on the weblog of the writer of the plugin if he could add a button which would show a random page (here), but unfortunately the writer, latz, didn’t want to implement such a [...]