Changeset 1410445
- Timestamp:
- 05/04/2016 03:58:22 PM (10 years ago)
- Location:
- vikinguard/trunk
- Files:
-
- 2 edited
-
heimdal.js (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
vikinguard/trunk/heimdal.js
r1303149 r1410445 89 89 90 90 window.location.replace(window.location.href 91 + "&action=configured&heimdalapm_email=" + e scape(email)92 + "&heimdalapm_password=" + e scape(password)93 + "&heimdalapm_customer=" + e scape(json.customerId)94 + "&heimdalapm_shop=" + e scape(json.shops[0].shopId));91 + "&action=configured&heimdalapm_email=" + encodeURIComponent(email) 92 + "&heimdalapm_password=" + encodeURIComponent(password) 93 + "&heimdalapm_customer=" + encodeURIComponent(json.customerId) 94 + "&heimdalapm_shop=" + encodeURIComponent(json.shops[0].shopId)); 95 95 96 96 } … … 183 183 signupcallbackajax( 184 184 "https://vikinguard.com/heimdalapp/api/external/customer?customerName=" 185 + e scape(customerName) + "&mail=" + escape(email) + "&password="186 + e scape(password) + "&shopName=" + escape(shopURL), error).done(185 + encodeURIComponent(customerName) + "&mail=" + encodeURIComponent(email) + "&password=" 186 + encodeURIComponent(password) + "&shopName=" + encodeURIComponent(shopURL), error).done( 187 187 function(data, statusCode) { 188 188 … … 217 217 218 218 window.location.replace(window.location.href 219 + "&action=configured&heimdalapm_email=" + e scape(email)220 + "&heimdalapm_password=" +e scape(password)221 + "&heimdalapm_customer=" + e scape(json.customerId)222 + "&heimdalapm_shop=" + e scape(json.shops[0].shopId));219 + "&action=configured&heimdalapm_email=" + encodeURIComponent(email) 220 + "&heimdalapm_password=" +encodeURIComponent(password) 221 + "&heimdalapm_customer=" + encodeURIComponent(json.customerId) 222 + "&heimdalapm_shop=" + encodeURIComponent(json.shops[0].shopId)); 223 223 } 224 224 }, -
vikinguard/trunk/readme.txt
r1407226 r1410445 4 4 Requires at least: 2.1 5 5 Tested up to: 4.5 6 Stable tag: 1.2. 16 Stable tag: 1.2.2 7 7 8 8 With Vikinguard you'll know the real user experience of your site and you'll be notified when something is not performing as expected. … … 56 56 57 57 = 1.2.1 = 58 * Fix bug enqueing scripts58 * JavaScript bug register fixed. 59 59 60 = 1.2.2 = 61 * Fixed js escape 60 62
Note: See TracChangeset
for help on using the changeset viewer.