Changeset 61542 for trunk/src/wp-includes/class-wp-scripts.php
- Timestamp:
- 01/28/2026 01:06:35 AM (2 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-scripts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-scripts.php
r61442 r61542 1192 1192 protected function get_dependency_warning_message( $handle, $missing_dependency_handles ) { 1193 1193 return sprintf( 1194 /* translators: 1: Script handle, 2: Comma-separated list of missing dependency handles. */1194 /* translators: 1: Script handle, 2: List of missing dependency handles. */ 1195 1195 __( 'The script with the handle "%1$s" was enqueued with dependencies that are not registered: %2$s.' ), 1196 1196 $handle, 1197 implode( ', ', $missing_dependency_handles )1197 implode( wp_get_list_item_separator(), $missing_dependency_handles ) 1198 1198 ); 1199 1199 }
Note: See TracChangeset
for help on using the changeset viewer.