summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaranG <ciaran@ciarang.com>2009-03-20 22:02:35 +0000
committerCiaranG <ciaran@ciarang.com>2009-03-20 22:02:35 +0000
commita9a71297f4c915c11e573adafffeccf3ff65a31c (patch)
treed74fccd95d12e0080685974cca014d077a6f3f4f
parentb4c273113cc5d16dfa1ea3236dd8c78d1169cbf3 (diff)
Use correct page information for notice search. See ticket #1333
-rw-r--r--actions/noticesearch.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index eb4a072de..4aec41621 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -122,8 +122,8 @@ class NoticesearchAction extends SearchAction
$cnt = $nl->show();
- $this->pagination($this->page > 1, $cnt > NOTICES_PER_PAGE,
- $this->page, 'noticesearch', array('q' => $q));
+ $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE,
+ $page, 'noticesearch', array('q' => $q));
}
function isReadOnly()
{