diff -uNr a/mp-wp/manifest b/mp-wp/manifest --- a/mp-wp/manifest 7f3ed7a409dd4530335398dd987eb95febac710c98943ebd59be688b4ee6bdded3dc9421bcc662bd8c88f27ba4857a38648df217a3a30fa934c396b734a194cb +++ b/mp-wp/manifest 04aa2a1054c2b9058b72d296e7edb0a53f0ed50f01496c228efb976e25805425f2b400e9db4affbfdb94d371ec253711eb4afff087e4f71e19f619b24aeed36d @@ -6,3 +6,4 @@ 602064 mp-wp_apply-htmlspecialchars-to-post-edit-content billymg Run post content through htmlspecialchars() before loading into the post edit UI 605926 mp-wp_comments_filtering diana_coman Recent comments widget should show only people's comments (no track/pingbacks); theme default changed to show trackbacks/pingbacks as last/at the bottom in an article's comments list. 624752 mp-wp_remove-textselectionjs-pop3-etc jfw Remove the unreliable JS-based selection, posting by POP3 login, and a stray .php.orig file. Neutralize and comment the example pingback updater. +624752 mp-wp_svg-screenshots-and-errorreporting jfw Allow .svg extensions in theme screenshot search. Don't clobber the user's errorreporting level without WP_DEBUG. diff -uNr a/mp-wp/wp-includes/theme.php b/mp-wp/wp-includes/theme.php --- a/mp-wp/wp-includes/theme.php fb6d4f7601223dc083b39a0865987827e5d806dea9c8ffc330c2382faebd3e2c870c9e8236fd3b7750821231af289a4adb3b005ab722b845541ee17645193284 +++ b/mp-wp/wp-includes/theme.php bcb7b01f1cd40807e89b56f51c67af3033f96861a3ad803172f770cfb3f6162fc9380e0a76ab401d97ea593238d09abcc1184890256ad64107a1d0f21158add4 @@ -321,7 +321,7 @@ $stylesheet = dirname($theme_file); $screenshot = false; - foreach ( array('png', 'gif', 'jpg', 'jpeg') as $ext ) { + foreach ( array('svg', 'png', 'gif', 'jpg', 'jpeg') as $ext ) { if (file_exists("$theme_root/$stylesheet/screenshot.$ext")) { $screenshot = "screenshot.$ext"; break; diff -uNr a/mp-wp/wp-settings.php b/mp-wp/wp-settings.php --- a/mp-wp/wp-settings.php 2232f426ed39364953de230c32e386ee848dd7d48b58c673e11b79ff7a49c9a6b7b5911d1c98021b51d8274cd8fe1601f079fc1a703ed3b8fce01e61cd42ef81 +++ b/mp-wp/wp-settings.php 6c0283d1d79fe9821427e177c78ce5557e185d10fc13eea045bd1b6e19829785dcb4999c03b8be1f607606d8bd8e486c9b099e7c37c5415d38d6d5eb26b13820 @@ -198,8 +198,6 @@ // Add define('WP_DEBUG',true); to wp-config.php to enable display of notices during development. if (defined('WP_DEBUG') and WP_DEBUG == true) { error_reporting(E_ALL); -} else { - error_reporting(E_ALL ^ E_NOTICE ^ E_USER_NOTICE); } // For an advanced caching plugin to use, static because you would only want one