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-includes/feed.php

    r24997 r25616  
    528528 */
    529529function fetch_feed( $url ) {
    530     require_once ( ABSPATH . WPINC . '/class-feed.php' );
     530    require_once( ABSPATH . WPINC . '/class-feed.php' );
    531531
    532532    $feed = new SimplePie();
Note: See TracChangeset for help on using the changeset viewer.