Make WordPress Core


Ignore:
Timestamp:
09/25/2013 12:17:40 AM (13 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/moderation.php

    r19712 r25616  
    88 * @subpackage Administration
    99 */
    10 require_once('../wp-load.php');
     10require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
    1111wp_redirect( admin_url('edit-comments.php?comment_status=moderated') );
    1212exit;
Note: See TracChangeset for help on using the changeset viewer.