Changeset 58310 for trunk/src/wp-admin/includes/class-wp-debug-data.php
- Timestamp:
- 06/03/2024 09:55:38 PM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r58307 r58310 348 348 $is_writable_wp_plugin_dir = wp_is_writable( WP_PLUGIN_DIR ); 349 349 $is_writable_template_directory = wp_is_writable( get_theme_root( get_template() ) ); 350 $is_writable_fonts_dir = wp_is_writable( wp_get_font_dir()['basedir'] ); 350 351 351 352 $info['wp-filesystem'] = array( … … 377 378 'value' => ( $is_writable_template_directory ? __( 'Writable' ) : __( 'Not writable' ) ), 378 379 'debug' => ( $is_writable_template_directory ? 'writable' : 'not writable' ), 380 ), 381 'fonts' => array( 382 'label' => __( 'The fonts directory' ), 383 'value' => ( $is_writable_fonts_dir ? __( 'Writable' ) : __( 'Not writable' ) ), 384 'debug' => ( $is_writable_fonts_dir ? 'writable' : 'not writable' ), 379 385 ), 380 386 ),
Note: See TracChangeset
for help on using the changeset viewer.