Changeset 57612 for trunk/src/wp-includes/vars.php
- Timestamp:
- 02/13/2024 10:06:22 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/vars.php
r56638 r57612 18 18 global $pagenow, 19 19 $is_lynx, $is_gecko, $is_winIE, $is_macIE, $is_opera, $is_NS4, $is_safari, $is_chrome, $is_iphone, $is_IE, $is_edge, 20 $is_apache, $is_IIS, $is_iis7, $is_nginx ;20 $is_apache, $is_IIS, $is_iis7, $is_nginx, $is_caddy; 21 21 22 22 // On which page are we? … … 128 128 129 129 /** 130 * Whether the server software is Caddy or something else 131 * 132 * @global bool $is_caddy 133 */ 134 $is_caddy = ( str_contains( $_SERVER['SERVER_SOFTWARE'], 'Caddy' ) ); 135 136 /** 130 137 * Whether the server software is IIS or something else 131 138 *
Note: See TracChangeset
for help on using the changeset viewer.