Make WordPress Core

Changeset 44593


Ignore:
Timestamp:
01/15/2019 02:40:59 AM (6 years ago)
Author:
desrosj
Message:

Coding Standards: Assignments must be the first block of code on a line.

Props subrataemfluence.
Fixes #44225.

File:
1 edited

Legend:

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

    r44581 r44593  
    166166
    167167    // Sanitize fields
    168     $allowed_tags      = $allowed_tags_in_links = array(
     168    $allowed_tags_in_links = array(
    169169        'abbr'    => array( 'title' => true ),
    170170        'acronym' => array( 'title' => true ),
     
    173173        'strong'  => true,
    174174    );
     175
     176    $allowed_tags      = $allowed_tags_in_links;
    175177    $allowed_tags['a'] = array(
    176178        'href'  => true,
Note: See TracChangeset for help on using the changeset viewer.