Make WordPress Core


Ignore:
Timestamp:
07/02/2019 11:41:16 PM (5 years ago)
Author:
pento
Message:

Coding Standards: Fix the Squiz.PHP.DisallowMultipleAssignments violations in wp-includes.

See #47632.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/js/_enqueues/vendor/tinymce/wp-tinymce.php

    r44651 r45590  
    3434header( "Cache-Control: public, max-age=$expires_offset" );
    3535
    36 if ( isset( $_GET['c'] ) && ( $file = get_file( $basepath . '/wp-tinymce.js' ) ) ) {
     36$file = get_file( $basepath . '/wp-tinymce.js' );
     37if ( isset( $_GET['c'] ) && $file ) {
    3738    echo $file;
    3839} else {
Note: See TracChangeset for help on using the changeset viewer.