Changeset 47198 for trunk/src/wp-mail.php
- Timestamp:
- 02/06/2020 06:31:22 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-mail.php
r47122 r47198 9 9 10 10 /** Make sure that the WordPress bootstrap has run before continuing. */ 11 require ( dirname( __FILE__ ) . '/wp-load.php' );11 require __DIR__ . '/wp-load.php'; 12 12 13 13 /** This filter is documented in wp-admin/options.php */ … … 30 30 31 31 /** Get the POP3 class with which to access the mailbox. */ 32 require_once ( ABSPATH . WPINC . '/class-pop3.php' );32 require_once ABSPATH . WPINC . '/class-pop3.php'; 33 33 34 34 /** Only check at this interval for new messages. */
Note: See TracChangeset
for help on using the changeset viewer.