From 329cd04b094512a4c2ec79574e70e1758f7195fd Mon Sep 17 00:00:00 2001 From: wangchunsheng Date: Tue, 1 Mar 2011 15:08:21 +0000 Subject: [PATCH] * add bottom margin to the pager. --- lib/pager/pager.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pager/pager.class.php b/lib/pager/pager.class.php index b3f486e578..b52475b0ec 100755 --- a/lib/pager/pager.class.php +++ b/lib/pager/pager.class.php @@ -283,7 +283,7 @@ class pager public function get($align = 'right', $type = 'full') { /* If the RecTotal is zero, return with no record. */ - if($this->recTotal == 0) { return "
{$this->lang->pager->noRecord}
"; } + if($this->recTotal == 0) { return "
{$this->lang->pager->noRecord}
"; } /* Set the params. */ $this->setParams(); @@ -307,7 +307,7 @@ class pager $pager .= $this->createRecPerPageJS(); } - return "
$pager
"; + return "
$pager
"; } /**