diff --git a/static/js/services/plan-service.js b/static/js/services/plan-service.js index 79d2a0a1b..af5716a57 100644 --- a/static/js/services/plan-service.js +++ b/static/js/services/plan-service.js @@ -67,9 +67,9 @@ function(KeyService, UserService, CookieService, ApiService, Features, Config, $ planService.getPlan(planId, function(plan) { if (planService.isOrgCompatible(plan)) { - $location.path('/organizations/new/?plan=' + planId); + $location.path('/organizations/new').search('plan', planId); } else { - $location.path('/user?plan=' + planId); + $location.path('/user').search('plan', planId); } }); });