Hmm, tried that and it still seems to be rendering the following html:
HTML Code:
<option value="View All">View All</option>
Instead of:
HTML Code:
<option value="2000">View All</option>
Here's the current PHP:
PHP Code:
for ($i = 50; 100 >= $i; $i = $i + 50) {
$perPageValues[] = $i;
}
$perPageValues['2000'] = 'View All';
$smarty->assign('per_page', 'Y');
$smarty->assign('per_page_values', $perPageValues);
Thanks for all your help on this Steve. It's so appreciated.