Make WordPress Core


Ignore:
Timestamp:
05/15/2025 10:04:38 AM (10 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Move $class variable in wp-admin/options.php closer to where it's used.

Follow-up to [60237].

See #63341.

File:
1 edited

Legend:

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

    r60237 r60238  
    413413    }
    414414
    415     $class = 'all-options';
    416 
    417415    if ( is_serialized( $option->option_value ) ) {
    418416        if ( is_serialized_string( $option->option_value ) ) {
     
    428426        $options_to_update[] = $option->option_name;
    429427    }
     428
     429    $class = 'all-options';
    430430
    431431    if ( $disabled ) {
Note: See TracChangeset for help on using the changeset viewer.