Changeset 57303
- Timestamp:
- 01/17/2024 02:30:47 PM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-textdomain-registry.php
r57299 r57303 229 229 */ 230 230 public function invalidate_mo_files_cache( $upgrader, $hook_extra ) { 231 if ( 'translation' !== $hook_extra['type'] || array() === $hook_extra['translations'] ) { 231 if ( 232 ! isset( $hook_extra['type'] ) || 233 'translation' !== $hook_extra['type'] || 234 array() === $hook_extra['translations'] 235 ) { 232 236 return; 233 237 }
Note: See TracChangeset
for help on using the changeset viewer.