Skip to content

Commit c4afd53

Browse files
Make wc_get_endpoint_url() compatible with WordPress use_trailing_slashes settings
1 parent d627a4b commit c4afd53

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

includes/wc-page-functions.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,12 @@ function wc_get_endpoint_url( $endpoint, $value = '', $permalink = '' ) {
101101
} else {
102102
$query_string = '';
103103
}
104-
$url = trailingslashit( $permalink ) . trailingslashit( $endpoint );
104+
$url = trailingslashit( $permalink );
105105

106106
if ( $value ) {
107-
$url .= trailingslashit( $value );
107+
$url .= trailingslashit( $endpoint ) . user_trailingslashit( $value );
108+
} else {
109+
$url .= user_trailingslashit( $endpoint );
108110
}
109111

110112
$url .= $query_string;

0 commit comments

Comments
 (0)