Changeset 58095
- Timestamp:
- 05/04/2024 05:25:54 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/l10n.php
r58062 r58095 834 834 * 835 835 * @since 6.5.0 836 * @since 6.6.0 Added the `$locale` parameter. 836 837 * 837 838 * @param string $file Path to the translation file to load. 838 839 * @param string $domain The text domain. 840 * @param string $locale The locale. 839 841 */ 840 $file = (string) apply_filters( 'load_translation_file', $file, $domain );842 $file = (string) apply_filters( 'load_translation_file', $file, $domain, $locale ); 841 843 842 844 $success = $i18n_controller->load_file( $file, $domain, $locale );
Note: See TracChangeset
for help on using the changeset viewer.