From 37e9be2f508ddc69a792364682dd5db1a2e41213 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Wed, 25 Jun 2008 14:51:46 -0400 Subject: [PATCH] Make Pagination->page and Pagination->perpage be public and not protected * Pagination.php --- Pagination.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Pagination.php b/Pagination.php index f0956e8..87bb0ba 100644 --- a/Pagination.php +++ b/Pagination.php @@ -44,13 +44,13 @@ abstract class BSPagination * Current page number * @var integer */ - protected $page; + public $page; /** * Per-page value * @var integer */ - protected $perpage; + public $perpage; /** * Number of page links -- 2.22.5