We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00bd8a2 commit 6285077Copy full SHA for 6285077
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- Fixed `wp_cache_flush_group` issue with Predis and replication connection
6
+- Fixed rare fatal error in `show_error_and_die()` (one more time)
7
8
## 2.5.2
9
includes/object-cache.php
@@ -2971,6 +2971,8 @@ protected function show_error_and_die( Exception $exception ) {
2971
add_filter( 'pre_determine_locale', function () {
2972
return defined( 'WPLANG' ) ? WPLANG : 'en_US';
2973
} );
2974
+
2975
+ add_filter( 'pre_get_language_files_from_path', '__return_empty_array' );
2976
}
2977
2978
// Load custom Redis error template, if present.
0 commit comments