Skip to content

Commit

Permalink
fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
trepmal committed Dec 25, 2024
1 parent ab0fdcd commit 034481b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions wp-cli/alloptions.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ public function find( $args, $assoc_args ) {

$options = array();
$alloptions = wp_load_alloptions( true );
$total_size = 0;

foreach ( $alloptions as $name => $val ) {
$size = mb_strlen( $val );
$total_size += $size;
$size = mb_strlen( $val );

// find big options only
if ( $assoc_args['big'] && $size < 500 ) {
Expand Down

0 comments on commit 034481b

Please sign in to comment.