diff options
author | Marc Alexander <admin@m-a-styles.de> | 2020-01-03 10:17:40 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2020-01-03 10:17:40 +0100 |
commit | a0ffbfce315ce45df4085d4c83536f2024e71a3f (patch) | |
tree | 201f829eb36dfeac07de172fcc7ce3bb8ae58347 /phpBB/adm | |
parent | [ticket/16287] Remove loops. prefix in providers loop (diff) | |
download | phpbb-a0ffbfce315ce45df4085d4c83536f2024e71a3f.tar.gz phpbb-a0ffbfce315ce45df4085d4c83536f2024e71a3f.tar.bz2 phpbb-a0ffbfce315ce45df4085d4c83536f2024e71a3f.zip |
[ticket/16287] Correctly pass json response to PHP file
PHPBB3-16287
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/adm/style/ajax.js b/phpBB/adm/style/ajax.js index b9424723bb..39b63e4696 100644 --- a/phpBB/adm/style/ajax.js +++ b/phpBB/adm/style/ajax.js @@ -74,7 +74,7 @@ phpbb.prepareSendStats = function () { var $sendStatisticsSuccess = $('<input />', { type: 'hidden', name: 'send_statistics_response', - value: res + value: JSON.stringify(res) }); $sendStatisticsSuccess.appendTo('p.submit-buttons'); |