Make WordPress Core


Ignore:
Timestamp:
05/18/2014 08:51:44 PM (10 years ago)
Author:
wonderboymusic
Message:

hackificator complains if you call include 'file.php' without the parens, needs to be include( 'file.php' )

See #27881.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/import.php

    r27374 r28479  
    120120 */
    121121function wp_get_popular_importers() {
    122     include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
     122    include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
    123123
    124124    $locale = get_locale();
Note: See TracChangeset for help on using the changeset viewer.