Skip to content

Commit c417f2f

Browse files
committed
Unindent a comment
1 parent edc3416 commit c417f2f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

components/DataLiberation/URL/functions.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@ function wp_rewrite_urls( $options ) {
6565
return $p->get_updated_html();
6666
}
6767

68-
/**
69-
* Check if a given URL matches the current site URL.
70-
*
71-
* @param URL $child The URL to check.
72-
* @param string $parent_url The current site URL to compare against.
73-
*
74-
* @return bool Whether the URL matches the current site URL.
75-
*/
68+
/**
69+
* Check if a given URL matches the current site URL.
70+
*
71+
* @param URL $child The URL to check.
72+
* @param string $parent_url The current site URL to compare against.
73+
*
74+
* @return bool Whether the URL matches the current site URL.
75+
*/
7676
function is_child_url_of( $child, $parent_url ) {
7777
$parent_url = is_string( $parent_url ) ? WPURL::parse( $parent_url ) : $parent_url;
7878
$child = is_string( $child ) ? WPURL::parse( $child ) : $child;

0 commit comments

Comments
 (0)