Author: david
Date: Wed Nov 2 14:21:58 2011
New Revision: 10248
Log:
Correct result counter, like revision 10247
Modified:
trunk/apps/qubit/modules/informationobject/templates/itemListSuccess.php
Modified:
trunk/apps/qubit/modules/informationobject/templates/itemListSuccess.php
==============================================================================
--- trunk/apps/qubit/modules/informationobject/templates/itemListSuccess.php
Wed Nov 2 14:15:23 2011 (r10247)
+++ trunk/apps/qubit/modules/informationobject/templates/itemListSuccess.php
Wed Nov 2 14:21:58 2011 (r10248)
@@ -61,7 +61,7 @@
<div class="result-count">
<?php echo __('Showing %1% to %2% of %3% results', array(
'%1%' => $startrow,
- '%2%' => $startrow += count($items),
- '%3%' => $resultCount + 1)) ?>
+ '%2%' => ($startrow += count($items)) - 1,
+ '%3%' => $resultCount)) ?>
</div>
<?php endforeach; ?>
--
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.com/group/qubit-commits?hl=en.