mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 05:25:47 +02: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:
@ -87,7 +87,7 @@ phpbb.prepareSendStats = function () {
|
|||||||
$.ajax({
|
$.ajax({
|
||||||
url: $this.attr('data-ajax-action').replace('&', '&'),
|
url: $this.attr('data-ajax-action').replace('&', '&'),
|
||||||
type: 'POST',
|
type: 'POST',
|
||||||
data: 'systemdata=' + $this.find('input[name=systemdata]').val(),
|
data: 'systemdata=' + encodeURIComponent($this.find('input[name=systemdata]').val()),
|
||||||
success: returnHandler,
|
success: returnHandler,
|
||||||
error: errorHandler,
|
error: errorHandler,
|
||||||
cache: false
|
cache: false
|
||||||
|
Reference in New Issue
Block a user