From 82379e6dc304c9c2f3f309e46c30bc439f85b2d3 Mon Sep 17 00:00:00 2001 From: guilhermeblanco Date: Sat, 22 Dec 2007 19:04:18 +0000 Subject: [PATCH] added prevention to override page_number mask --- lib/Doctrine/Pager/Layout.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/Doctrine/Pager/Layout.php b/lib/Doctrine/Pager/Layout.php index d93bb76c1..8170e57d5 100644 --- a/lib/Doctrine/Pager/Layout.php +++ b/lib/Doctrine/Pager/Layout.php @@ -272,10 +272,12 @@ class Doctrine_Pager_Layout */ public function addMaskReplacement($oldMask, $newMask, $asValue = false) { - $this->_maskReplacements[$oldMask] = array( - 'newMask' => $newMask, - 'asValue' => ($asValue === false) ? false : true - ); + if (($oldMask = trim($oldMask)) != 'page_number') { + $this->_maskReplacements[$oldMask] = array( + 'newMask' => $newMask, + 'asValue' => ($asValue === false) ? false : true + ); + } }