Skip to content

Commit

Permalink
Fix data order
Browse files Browse the repository at this point in the history
Co-authored-by: Juliette <[email protected]>
  • Loading branch information
IanDelMar and jrfnl authored Sep 11, 2024
1 parent 46b5117 commit 05f42ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WordPress/AbstractValidSlugSniff.php
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ public function process_parameters( $stackPtr, $group_name, $matched_content, $p
array(
$matched_content,
$this->slug_type,
ucfirst( $this->slug_type ),
$slug,
ucfirst( $this->slug_type ),
)
);
}
Expand Down

0 comments on commit 05f42ca

Please sign in to comment.