We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00bd8a2 commit 1dae012Copy full SHA for 1dae012
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,9 @@ protected function show_error_and_die( Exception $exception ) {
2971
add_filter( 'pre_determine_locale', function () {
2972
return defined( 'WPLANG' ) ? WPLANG : 'en_US';
2973
} );
2974
+ add_filter( 'pre_get_language_files_from_path', function () {
2975
+ return [];
2976
+ } );
2977
}
2978
2979
// Load custom Redis error template, if present.
0 commit comments