Changeset 32116 for trunk/src/wp-includes/functions.php
- Timestamp:
- 04/12/2015 09:28:58 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r32107 r32116 3557 3557 if ( function_exists( '__' ) ) { 3558 3558 $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version ); 3559 $message .= ' ' . __( 'Please see <a href="http ://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' );3559 $message .= ' ' . __( 'Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' ); 3560 3560 trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) ); 3561 3561 } else { 3562 3562 $version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version ); 3563 $message .= ' Please see <a href="http ://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.';3563 $message .= ' Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.'; 3564 3564 trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) ); 3565 3565 } … … 4184 4184 * their plugin file and move the data headers to the top. 4185 4185 * 4186 * @link http ://codex.wordpress.org/File_Header4186 * @link https://codex.wordpress.org/File_Header 4187 4187 * 4188 4188 * @since 2.9.0
Note: See TracChangeset
for help on using the changeset viewer.