Make WordPress Core


Ignore:
Timestamp:
09/25/2013 12:17:40 AM (11 years ago)
Author:
nacin
Message:

Don't rely on include_path to include files.

Always use dirname() or, once available, ABSPATH.

props ketwaroo, hakre.
fixes #17092.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/link-manager.php

    r23567 r25616  
    88
    99/** Load WordPress Administration Bootstrap */
    10 require_once ('admin.php');
     10require_once( dirname( __FILE__ ) . '/admin.php' );
    1111if ( ! current_user_can( 'manage_links' ) )
    1212    wp_die( __( 'You do not have sufficient permissions to edit the links for this site.' ) );
     
    6262);
    6363
    64 include_once ('./admin-header.php');
     64include_once( ABSPATH . 'wp-admin/admin-header.php' );
    6565
    6666if ( ! current_user_can('manage_links') )
     
    9898
    9999<?php
    100 include('./admin-footer.php');
     100include( ABSPATH . 'wp-admin/admin-footer.php' );
Note: See TracChangeset for help on using the changeset viewer.