Ticket #22251: 22251.patch
| File 22251.patch, 598 bytes (added by , 13 years ago) |
|---|
-
wp-includes/functions.php
3794 3794 function wp_checkdate( $month, $day, $year, $source_date ) { 3795 3795 return apply_filters( 'wp_checkdate', checkdate( $month, $day, $year ), $source_date ); 3796 3796 } 3797 3798 /** 3799 * Determine if a constant exists and evaluates to boolean true 3800 * 3801 * @since 3.5.0 3802 * 3803 * @return bool true|false 3804 */ 3805 function wp_constant( $constant ) { 3806 return defined( $constant ) && constant( $constant ); 3807 }