Changeset 21922 for trunk/wp-includes/functions.php
- Timestamp:
- 09/20/2012 10:46:50 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r21865 r21922 3704 3704 } 3705 3705 3706 /** 3707 * Test if the supplied date is valid for the Gregorian calendar 3708 * 3709 * @since 3.5.0 3710 * 3711 * @return bool true|false 3712 */ 3713 function wp_checkdate( $month, $day, $year, $source_date ) { 3714 return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date ); 3715 }
Note: See TracChangeset
for help on using the changeset viewer.