Changeset 47198 for trunk/src/wp-admin/load-scripts.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/load-scripts.php
r47122 r47198 10 10 /** Set ABSPATH for execution */ 11 11 if ( ! defined( 'ABSPATH' ) ) { 12 define( 'ABSPATH', dirname( dirname( __FILE__ )) . '/' );12 define( 'ABSPATH', dirname( __DIR__ ) . '/' ); 13 13 } 14 14 … … 34 34 } 35 35 36 require ( ABSPATH . 'wp-admin/includes/noop.php' );37 require ( ABSPATH . WPINC . '/script-loader.php' );38 require ( ABSPATH . WPINC . '/version.php' );36 require ABSPATH . 'wp-admin/includes/noop.php'; 37 require ABSPATH . WPINC . '/script-loader.php'; 38 require ABSPATH . WPINC . '/version.php'; 39 39 40 40 $expires_offset = 31536000; // 1 year.
Note: See TracChangeset
for help on using the changeset viewer.