Make WordPress Core


Ignore:
Timestamp:
04/18/2010 06:14:45 AM (16 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/nav-menus.php

    r14031 r14139  
    1111
    1212/** Load WordPress Administration Bootstrap */
    13 require_once( 'admin.php' );
     13require_once( './admin.php' );
    1414
    1515// Load all the nav menu interface functions
     
    236236
    237237// Get the admin header
    238 require_once( 'admin-header.php' );
     238require_once( './admin-header.php' );
    239239?>
    240240<div class="wrap">
     
    346346</div><!-- /#menu-item-settings-->
    347347
    348 <?php include( 'admin-footer.php' ); ?>
     348<?php include( './admin-footer.php' ); ?>
Note: See TracChangeset for help on using the changeset viewer.