Skip to content

Commit

Permalink
πŸ› FIX: PHP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
austinginder committed Sep 8, 2024
1 parent 4db671b commit e03772b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions lib/local-scripts/quicksave-list-missing.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@
}

// Converts --arguments into $arguments
parse_str( implode( '&', $args ) );

parse_str( implode( '&', $args ), $arguments );
$site = array_keys( $arguments )[0];
$environment = "";
$format = "";
$provider = "";
if( strpos( $site, "-" ) !== false ) {
$split = explode( "-", $site );
$site = $split[0];
Expand Down

0 comments on commit e03772b

Please sign in to comment.