Skip to content

Commit

Permalink
Merge pull request #4240 from google/update/adsense-url
Browse files Browse the repository at this point in the history
  • Loading branch information
aaemnnosttv committed Oct 19, 2021
2 parents ecc7f43 + f64f867 commit 298ca37
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions assets/js/modules/adsense/datastore/service.js
Expand Up @@ -85,10 +85,7 @@ export const selectors = {
query.url = siteURL;
}

return addQueryArgs(
'https://www.google.com/adsense/signup/new',
query
);
return addQueryArgs( 'https://www.google.com/adsense/signup', query );
} ),

/**
Expand Down
2 changes: 1 addition & 1 deletion includes/Modules/AdSense.php
Expand Up @@ -415,7 +415,7 @@ protected function get_account_url() {
if ( ! empty( $option['accountID'] ) ) {
$url = sprintf( 'https://www.google.com/adsense/new/%s/home', $option['accountID'] );
} else {
$url = 'https://www.google.com/adsense/signup/new';
$url = 'https://www.google.com/adsense/signup';
}

if ( $profile->has() ) {
Expand Down

0 comments on commit 298ca37

Please sign in to comment.