Changeset 58409 for trunk/src/wp-includes/theme.php
- Timestamp:
- 06/13/2024 08:48:33 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/theme.php
r58366 r58409 515 515 $dirs = @ scandir( $theme_root ); 516 516 if ( ! $dirs ) { 517 trigger_error( "$theme_root is not readable", E_USER_NOTICE);517 wp_trigger_error( __FUNCTION__, "$theme_root is not readable" ); 518 518 continue; 519 519 } … … 539 539 $sub_dirs = @ scandir( $theme_root . '/' . $dir ); 540 540 if ( ! $sub_dirs ) { 541 trigger_error( "$theme_root/$dir is not readable", E_USER_NOTICE);541 wp_trigger_error( __FUNCTION__, "$theme_root/$dir is not readable" ); 542 542 continue; 543 543 }
Note: See TracChangeset
for help on using the changeset viewer.