Make WordPress Core


Ignore:
Timestamp:
04/18/2010 06:14:45 AM (13 years ago)
Author:
nacin
Message:

Use relative paths when including files, avoiding include_path. fixes #12594, props sorich87.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-reading.php

    r13971 r14139  
    88
    99/** WordPress Administration Bootstrap */
    10 require_once( 'admin.php' );
     10require_once( './admin.php' );
    1111
    1212if ( ! current_user_can( 'manage_options' ) )
     
    1616$parent_file = 'options-general.php';
    1717
    18 include( 'admin-header.php' );
     18include( './admin-header.php' );
    1919?>
    2020
Note: See TracChangeset for help on using the changeset viewer.