Making WordPress.org

Changeset 13156


Ignore:
Timestamp:
01/30/2024 01:20:10 AM (8 months ago)
Author:
dd32
Message:

Photo Directory, Photo: Use break instead of continue within switch.

Avoids a PHP warning: E_WARNING: "continue" targeting switch is equivalent to "break". Did you mean to use "continue 2"?

Introduced in [13155].
See #7427.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/photo-directory/inc/photo.php

    r13155 r13156  
    944944                    $value = number_format( (float) $value, 2 );
    945945                    if ( 0 >= $value ) {
    946                         continue;
     946                        break;
    947947                    }
    948948                    // Trim trailing zeroes after the decimal place, and potentially the decimal itself, then append 'mm'.
Note: See TracChangeset for help on using the changeset viewer.