Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #42264, comment 3


Ignore:
Timestamp:
03/28/2018 08:32:58 PM (7 years ago)
Author:
jrf
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #42264, comment 3

    initial v1  
    2525);
    2626
    27 require_once 'wp-includes/phpcompat/core-functions-and-constants.php';
     27require_once ABSPATH . WPINC . '/phpcompat/core-functions-and-constants.php';
    2828
    2929foreach ( $php_backfills as $extension ) {
    3030        if ( extension_loaded( $extension ) === false ) {
    31                 require_once 'wp-includes/phpcompat/' . $extension . '.php';
     31                require_once ABSPATH . WPINC . '/phpcompat/' . $extension . '.php';
    3232        }
    3333}