Changeset 16942 for trunk/wp-includes/functions.php
- Timestamp:
- 12/15/2010 11:39:23 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r16941 r16942 4483 4483 if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) { 4484 4484 if ( is_null( $version ) ) 4485 trigger_error( sprintf( __('%1$s was called with an argument that is <strong>incorrect</strong> - %2$s'), $function, $message ) );4485 trigger_error( sprintf( __('%1$s was called <strong>incorrectly</strong> - %2$s'), $function, $message ) ); 4486 4486 else 4487 trigger_error( sprintf( __('%1$s was called with an argument that is<strong>incorrect</strong> since version %2$s - %3$s'), $function, $version, $message ) );4488 } 4489 } 4487 trigger_error( sprintf( __('%1$s was called in a way which has been <strong>incorrect</strong> since version %2$s - %3$s'), $function, $version, $message ) ); 4488 } 4489 }
Note: See TracChangeset
for help on using the changeset viewer.