From 2454a53583542a307c84fe7ce82e85389a45a3c2 Mon Sep 17 00:00:00 2001 From: Andrew Garrett Date: Wed, 28 Jan 2009 23:55:00 +0000 Subject: [PATCH] Tweak variable name to avoid confusion. --- includes/Pager.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/Pager.php b/includes/Pager.php index 32bfec5637..653b88186b 100644 --- a/includes/Pager.php +++ b/includes/Pager.php @@ -745,8 +745,8 @@ abstract class TablePager extends IndexPager { } function formatRow( $row ) { - $class = $this->getRowClass( $row ); - $s = "\n"; + $rowClass = $this->getRowClass( $row ); + $s = "\n"; $fieldNames = $this->getFieldNames(); $this->mCurrentRow = $row; # In case formatValue needs to know foreach ( $fieldNames as $field => $name ) { -- 2.20.1