Plugin Directory

Changeset 230889


Ignore:
Timestamp:
04/20/2010 05:59:09 AM (16 years ago)
Author:
mgolawala
Message:

Fixed a classic off-by-one pagination bug :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • wp-category-manager/trunk/wp-category-manager.js

    r230618 r230889  
    9191
    9292                // now decide if you want to show next
    93                 if(curPage * postsPerPage >= totalPosts)
     93                if((curPage+1) * postsPerPage >= totalPosts)
    9494                {
    9595                    jQuery('.catmannextPage').hide();
Note: See TracChangeset for help on using the changeset viewer.