Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2506,7 +2506,15 @@ |
2507 | 2507 | * @return null |
2508 | 2508 | */ |
2509 | 2509 | function wfDeprecated( $function ) { |
2510 | | - trigger_error( "Use of $function is deprecated", E_USER_NOTICE ); |
| 2510 | + $callers = debug_backtrace(); |
| 2511 | + $file = @$callers[2]['file']; |
| 2512 | + $line = @$callers[2]['line']; |
| 2513 | + $func = @$callers[2]['function']; |
| 2514 | + if ( $func && $file ) { |
| 2515 | + trigger_error( "Use of $function is deprecated. Called from $func at $file:$line", E_USER_NOTICE ); |
| 2516 | + } else { |
| 2517 | + trigger_error( "Use of $function is deprecated.", E_USER_NOTICE ); |
| 2518 | + } |
2511 | 2519 | } |
2512 | 2520 | |
2513 | 2521 | /** |