In Project Tools Options, what is the content of the 'Notes Displayed Per Page' option?
It seems 0 is a non-valid value while the option says it is. I will check what could I do.
Can you define '1' for this setting awaiting a fix? Thank you
--------------- Added [DATE]1299492035[/DATE] at [TIME]1299492035[/TIME] ---------------
You can try to fix it (not tested as I don't reproduce it actually) by changing the given line in your message error by this code:
PHP Code:
if ($vbulletin->options['pt_notesperpage'] == 0)
{
$issue['totalpages'] = 1;
}
else
{
$issue['totalpages'] = ceil($issue['totalnotes'] / $vbulletin->options['pt_notesperpage']);
}