Make WordPress Core


Ignore:
Timestamp:
05/18/2014 08:51:44 PM (11 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/update.php

    r28304 r28479  
    399399
    400400function maintenance_nag() {
    401     include ABSPATH . WPINC . '/version.php'; // include an unmodified $wp_version
     401    include( ABSPATH . WPINC . '/version.php' ); // include an unmodified $wp_version
    402402    global $upgrading;
    403403    $nag = isset( $upgrading );
Note: See TracChangeset for help on using the changeset viewer.