Index: trunk/extensions/CodeReview/api/ApiCodeDiff.php |
— | — | @@ -42,7 +42,7 @@ |
43 | 43 | |
44 | 44 | if ( !is_string( $diff ) ) { |
45 | 45 | // FIXME: Are we sure we don't want to throw an error here? |
46 | | - $html = 'Failed to load diff. ' . CodeRepository::getDiffErrorMessage( $diff ); |
| 46 | + $html = 'Failed to load diff. Error message: ' . CodeRepository::getDiffErrorMessage( $diff ); |
47 | 47 | } elseif ( strlen( $diff ) > $wgCodeReviewMaxDiffSize ) { |
48 | 48 | $html = 'Diff too large.'; |
49 | 49 | } else { |