Changeset 35667
- Timestamp:
- 11/18/2015 05:40:43 PM (10 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r35556 r35667 3781 3781 if ( function_exists( '__' ) ) { 3782 3782 $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version ); 3783 $message .= ' ' . __( 'Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' ); 3783 /* translators: %s: Codex URL */ 3784 $message .= ' ' . sprintf( __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ), 3785 __( 'https://codex.wordpress.org/Debugging_in_WordPress' ) 3786 ); 3784 3787 trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) ); 3785 3788 } else { 3786 3789 $version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version ); 3787 $message .= ' Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.'; 3790 $message .= sprintf( ' Please see <a href="%s">Debugging in WordPress</a> for more information.', 3791 'https://codex.wordpress.org/Debugging_in_WordPress' 3792 ); 3788 3793 trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) ); 3789 3794 }
Note: See TracChangeset
for help on using the changeset viewer.