Update date format for Search by day.
authorSteve Sutton <steve@gaslightmedia.com>
Tue, 8 Nov 2016 14:05:50 +0000 (09:05 -0500)
committerSteve Sutton <steve@gaslightmedia.com>
Tue, 8 Nov 2016 14:05:50 +0000 (09:05 -0500)
Updating the date_format in Search by bay to include the Week day.

views/front/events/searchFormBeerweek.html

index 2b7954f..185500b 100644 (file)
@@ -55,7 +55,7 @@
                 <select id="glmEventDay" name="event_day">
                     <option>-- Choose Day --</option>
                     {foreach $eventDays as $day}
-                    <option value="{$day.event_date|date_format:"%m/%d/%Y"}"{if $eventDay == $day.event_date|date_format:"%m/%d/%Y"} selected{/if}>{$day.event_date|date_format}</option>
+                    <option value="{$day.event_date|date_format:"%m/%d/%Y"}"{if $eventDay == $day.event_date|date_format:"%m/%d/%Y"} selected{/if}>{$day.event_date|date_format:"%A, %b %e, %Y"}</option>
                     {/foreach}
                 </select>
             </div>