Changeset 58066 for branches/6.5/src/wp-includes/l10n.php
- Timestamp:
- 04/30/2024 09:45:39 AM (5 months ago)
- Location:
- branches/6.5
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/6.5
-
branches/6.5/src/wp-includes/l10n.php
r57639 r58066 729 729 $l10n_unloaded = (array) $l10n_unloaded; 730 730 731 if ( ! is_string( $domain ) ) { 732 return false; 733 } 734 731 735 /** 732 736 * Filters whether to short-circuit loading .mo file. … … 990 994 global $wp_textdomain_registry; 991 995 996 if ( ! is_string( $domain ) ) { 997 return false; 998 } 999 992 1000 /** 993 1001 * Filters a plugin's locale. … … 1038 1046 global $wp_textdomain_registry; 1039 1047 1048 if ( ! is_string( $domain ) ) { 1049 return false; 1050 } 1051 1040 1052 /** This filter is documented in wp-includes/l10n.php */ 1041 1053 $locale = apply_filters( 'plugin_locale', determine_locale(), $domain ); … … 1076 1088 /** @var WP_Textdomain_Registry $wp_textdomain_registry */ 1077 1089 global $wp_textdomain_registry; 1090 1091 if ( ! is_string( $domain ) ) { 1092 return false; 1093 } 1078 1094 1079 1095 /**
Note: See TracChangeset
for help on using the changeset viewer.