Changeset 47198 for trunk/src/xmlrpc.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/xmlrpc.php
r47122 r47198 28 28 29 29 /** Include the bootstrap for setting up WordPress environment */ 30 include( dirname( __FILE__ ) . '/wp-load.php' );30 require_once __DIR__ . '/wp-load.php'; 31 31 32 32 if ( isset( $_GET['rsd'] ) ) { // http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html … … 61 61 } 62 62 63 include_once( ABSPATH . 'wp-admin/includes/admin.php' );64 include_once( ABSPATH . WPINC . '/class-IXR.php' );65 include_once( ABSPATH . WPINC . '/class-wp-xmlrpc-server.php' );63 require_once ABSPATH . 'wp-admin/includes/admin.php'; 64 require_once ABSPATH . WPINC . '/class-IXR.php'; 65 require_once ABSPATH . WPINC . '/class-wp-xmlrpc-server.php'; 66 66 67 67 /**
Note: See TracChangeset
for help on using the changeset viewer.