Changeset 57923
- Timestamp:
- 04/04/2024 01:37:56 PM (11 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/vars.php
r57801 r57923 128 128 129 129 /** 130 * Whether the server software is Caddy or something else.130 * Whether the server software is Caddy / FrankenPHP or something else. 131 131 * 132 132 * @global bool $is_caddy 133 133 */ 134 $is_caddy = ( str_contains( $_SERVER['SERVER_SOFTWARE'], 'Caddy' ) );134 $is_caddy = ( str_contains( $_SERVER['SERVER_SOFTWARE'], 'Caddy' ) || str_contains( $_SERVER['SERVER_SOFTWARE'], 'FrankenPHP' ) ); 135 135 136 136 /**
Note: See TracChangeset
for help on using the changeset viewer.