Changeset 32733 for trunk/src/wp-includes/general-template.php
- Timestamp:
- 06/12/2015 05:47:16 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/general-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/general-template.php
r32598 r32733 1646 1646 1647 1647 foreach ( $myweek as $wd ) { 1648 $day_name = (true == $initial)? $wp_locale->get_weekday_initial($wd) : $wp_locale->get_weekday_abbrev($wd);1648 $day_name = $initial ? $wp_locale->get_weekday_initial($wd) : $wp_locale->get_weekday_abbrev($wd); 1649 1649 $wd = esc_attr($wd); 1650 1650 $calendar_output .= "\n\t\t<th scope=\"col\" title=\"$wd\">$day_name</th>";
Note: See TracChangeset
for help on using the changeset viewer.