Skip to:
Content

bbPress.org


Ignore:
Timestamp:
02/03/2017 08:36:09 PM (9 years ago)
Author:
johnjamesjacoby
Message:

General: Remove () around require construct calls, and breathing room around some ! usages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/admin.php

    r6282 r6284  
    130130        require $this->admin_dir . 'converter.php';
    131131        require $this->admin_dir . 'settings.php';
    132         require $this->admin_dir . 'functions.php';
     132        require $this->admin_dir . 'common.php';
    133133        require $this->admin_dir . 'metaboxes.php';
    134134        require $this->admin_dir . 'forums.php';
     
    465465
    466466        // Leave if we're not in the import section
    467         if ( !defined( 'WP_LOAD_IMPORTERS' ) ) {
     467        if ( ! defined( 'WP_LOAD_IMPORTERS' ) ) {
    468468            return;
    469469        }
    470470
    471471        // Load Importer API
    472         require_once( ABSPATH . 'wp-admin/includes/import.php' );
     472        require_once ABSPATH . 'wp-admin/includes/import.php';
    473473
    474474        // Load our importers
     
    486486            // If the file exists, include it
    487487            if ( file_exists( $import_file ) ) {
    488                 require( $import_file );
     488                require $import_file;
    489489            }
    490490        }
Note: See TracChangeset for help on using the changeset viewer.