i'm using CakePHP, and i need to paginate some stuff in my page.
I'm using Twitter Bootstrap layout with CakePHP but unfortunaly, CakePHP paginates using the following logic:
If, the active link is equal to the active page, then it just removes the a tag from the link.
But, in order to my Twitter Bootstrap layout work, i need that a tag in all pagination numbers (including the active one): http://twitter.github.com/bootstrap/components.html#pagination
Do i need to create a totaly new Helper to do this, or is there a 'simplest' solution?
I don't want to hack (change) twitter bootstrap and CakePHP core...
Thanks!
Ivan