View Single Post
  #4  
Old 03-03-2003, 10:42 PM
  B00MER's Avatar 
B00MER B00MER is offline
 

X-Guru
  
Join Date: Sep 2002
Location: Keller, TX (Cart-Lab.com)
Posts: 3,165
 

Default

make sure under Smarty-2.3.0/plugins/ that the file modifier.lower.php exists, if it doesn't, create it and copy paste the following code in it:

Code:
<?php /* * Smarty plugin * ------------------------------------------------------------- * Type: modifier * Name: lower * Purpose: convert string to lowercase * ------------------------------------------------------------- */ function smarty_modifier_lower($string) { return strtolower($string); } ?>
__________________
Cart-Lab - 100+ Social Bookmarks for X-Cart.
Reply With Quote