Skip to content

Commit 4b91168

Browse files
authored
Fixed phpcs
1 parent 754d53d commit 4b91168

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

includes/class-cpt.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,14 @@ public static function register_taxonomies() {
201201

202202
/**
203203
* Sanitize slug but retain slashes.
204-
*
204+
*
205205
* @since 2.3.3
206206
*
207207
* @param string $slug Raw slug input.
208208
* @return string Sanitized slug with slashes retained.
209209
*/
210210
public static function sanitize_slug_with_slashes( $slug ) {
211-
$parts = explode( '/', $slug );
211+
$parts = explode( '/', $slug );
212212
$sanitized_parts = array_map( 'sanitize_title', $parts );
213213

214214
return implode( '/', $sanitized_parts );

0 commit comments

Comments
 (0)