Helper class not working after upgrade

Permalink
I have a question related to this post:

http://www.concrete5.org/community/forums/usage/styling-the-paginat...

Basically, I wrote this helper and it was working. But I upgraded to concrete 5.6.2 and now I am getting the following message:

Fatal error: Class 'PaginationHelper' not found in /home/ifdotorg/public_html/updates/concrete5.6.0.2/concrete/core/libraries/loader.php on line 291


I'm not really sure where to start on this. I looked at the old version of concrete5 I was running and I never Loaded in the Pagination helper in this core class?

Basically I have a class called pagination.php in my "helpers" folder, looks a bit like this:

<?php  defined('C5_EXECUTE') or die("Access Denied.");
class SitePaginationHelper extends PaginationHelper {
   ....
}
?>

 
nicolechung replied on at Permalink Reply
Okay, so it looks like I had to rewrite the helper to:

class PaginationHelper extends Concrete5_Helper_Pagination {