Author: jablko
Date: Thu Aug 27 12:38:25 2009
New Revision: 3087
Log:
Fix total results count
Modified:
trunk/apps/qubit/modules/default/templates/_pager.php
Modified: trunk/apps/qubit/modules/default/templates/_pager.php
==============================================================================
--- trunk/apps/qubit/modules/default/templates/_pager.php Thu Aug 27
12:35:58 2009 (r3086)
+++ trunk/apps/qubit/modules/default/templates/_pager.php Thu Aug 27
12:38:25 2009 (r3087)
@@ -13,5 +13,5 @@
<?php endif; ?>
<div class="result-count">
-<?php echo __('displaying %1% to %2% of %3% results', array('%1%' =>
$pager->getFirstHit(), '%2%' => $pager->getLastHit(), '%3%' =>
count($pager->getHits()))) ?>
+<?php echo __('displaying %1% to %2% of %3% results', array('%1%' =>
$pager->getFirstHit(), '%2%' => $pager->getLastHit(), '%3%' =>
count($pager->allHits))) ?>
</div>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Qubit Toolkit Commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.ca/group/qubit-commits?hl=en
-~----------~----~----~----~------~----~------~--~---