Changeset 61247 for trunk/src/wp-includes/class-wp-duotone.php
- Timestamp:
- 11/14/2025 10:11:11 PM (4 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-duotone.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-duotone.php
r58414 r61247 247 247 'g' => (int) base_convert( $hex[1] . $hex[1], 16, 10 ), 248 248 'b' => (int) base_convert( $hex[2] . $hex[2], 16, 10 ), 249 'a' => 4 === strlen( $hex ) ? round( base_convert( $hex[3] . $hex[3], 16, 10 ) / 255, 2 ) : 1,249 'a' => 4 === strlen( $hex ) ? round( (int) base_convert( $hex[3] . $hex[3], 16, 10 ) / 255, 2 ) : 1, 250 250 ); 251 251 }
Note: See TracChangeset
for help on using the changeset viewer.