1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-03-24 01:20:40 +01:00

[ticket/14492] Encode URI components in systemdata for stats

The stats data needs to be URI encoded to prevent issues when
submitting the data to the receive_stats script on www.phpbb.com.

PHPBB3-14492
This commit is contained in:
Marc Alexander 2016-11-09 22:02:46 +01:00
parent 15f433f00f
commit 9b4190e136
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

View File

@ -87,7 +87,7 @@ phpbb.prepareSendStats = function () {
$.ajax({
url: $this.attr('data-ajax-action').replace('&', '&'),
type: 'POST',
data: 'systemdata=' + $this.find('input[name=systemdata]').val(),
data: 'systemdata=' + encodeURIComponent($this.find('input[name=systemdata]').val()),
success: returnHandler,
error: errorHandler,
cache: false