vassilev - 2005-04-11

Logged In: YES
user_id=1248799

We found the problem with this bug. It is on row 285 in file
SmartListHelper.java

The row:

startPage = Math.max(Math.min(this.currentPage - groupSize /
2, this.pageCount - groupSize), 1);

should be:

startPage = Math.max(Math.min(this.currentPage - groupSize /
2, this.pageCount - groupSize + 1), 1);