Changeset 37985 for trunk/src/wp-includes/author-template.php
- Timestamp:
- 07/06/2016 12:39:01 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/author-template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/author-template.php
r37949 r37985 25 25 26 26 if ( !empty( $deprecated ) ) 27 _deprecated_argument( __FUNCTION__, '2.1 ' );27 _deprecated_argument( __FUNCTION__, '2.1.0' ); 28 28 29 29 /** … … 58 58 function the_author( $deprecated = '', $deprecated_echo = true ) { 59 59 if ( ! empty( $deprecated ) ) { 60 _deprecated_argument( __FUNCTION__, '2.1 ' );60 _deprecated_argument( __FUNCTION__, '2.1.0' ); 61 61 } 62 62 63 63 if ( true !== $deprecated_echo ) { 64 _deprecated_argument( __FUNCTION__, '1.5 ',64 _deprecated_argument( __FUNCTION__, '1.5.0', 65 65 /* translators: %s: get_the_author() */ 66 66 sprintf( __( 'Use %s instead if you do not want the value echoed.' ), … … 278 278 function the_author_posts_link( $deprecated = '' ) { 279 279 if ( ! empty( $deprecated ) ) { 280 _deprecated_argument( __FUNCTION__, '2.1 ' );280 _deprecated_argument( __FUNCTION__, '2.1.0' ); 281 281 } 282 282 echo get_the_author_posts_link();
Note: See TracChangeset
for help on using the changeset viewer.