Skip to content

Commit

Permalink
Switch to using esc_url_raw for the domain registration, search, an…
Browse files Browse the repository at this point in the history
…d purchase flow url.
  • Loading branch information
bswatson committed Dec 8, 2022
1 parent 7d3af2d commit 8683ef0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wme-sitebuilder/Wizards/GoLive.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ public function props() {
return [
'canBeClosed' => true,
'autoLaunch' => false,
'domainRegistrationUrl' => esc_url( 'https://www.nexcess.net/domain-registration/' ),
'domainRegistrationUrl' => esc_url_raw( 'https://www.nexcess.net/domain-registration/' ),
'verifyingUrl' => $this->getData()->get( 'verifying_domain', '' ),
'domainSearchUrl' => esc_url( 'https://my.nexcess.net/domain-search' ),
'purchaseFlowUrl' => esc_url( apply_filters( 'wme_sitebuilder_golive_purchase_url', '' ) ),
'domainSearchUrl' => esc_url_raw( 'https://my.nexcess.net/domain-search' ),
'purchaseFlowUrl' => esc_url_raw( apply_filters( 'wme_sitebuilder_golive_purchase_url', '' ) ),
];
}

Expand Down

0 comments on commit 8683ef0

Please sign in to comment.