
Originally Posted by
DivaVocals
I found this code in line 457 not 532.. Made the change and it made no difference..
Code:
<td class="smallText" id="td_last_year"><?php echo zen_draw_radio_field('date_preset', 'last_year', false) . sprintf(SEARCH_DATE_LAST_YEAR, date("Y", mktime(0,0,0,1,1,date("y")-1))); ?></td>
Try changing that line to read
Code:
<td class="smallText" id="td_last_year"><?php echo zen_draw_radio_field('date_preset', 'last_year', false) . sprintf(SEARCH_DATE_LAST_YEAR, date('Y', strtotime('-1 year'))); ?></td>
Bookmarks