Skip to content
Snippets Groups Projects
Commit 37a14dc0 authored by Elias Villiger's avatar Elias Villiger
Browse files

Fixes #12268: Verbesserter FormSubmitLog Page Sample Code

parent 68d88531
No related branches found
No related tags found
1 merge request!330Fixes #12268: Verbesserter FormSubmitLog Page Sample Code
Pipeline #5085 passed
......@@ -262,9 +262,9 @@ The following QFQ code could be used for that purpose (put it in a QFQ PageConte
, '<br><b>IP Address</b>: ', l.clientIp
, '<br><b>User Agent</b>: ', l.userAgent
, '<br><b>SIP Data</b>: <div style="margin-left:20px;">'
, "<script>var data = JSON.parse('", l.sipData, "'); for (var key in data) {
, '<script>var data = ', l.sipData, "; for (var key in data) {
document.write('<b>' + key + '</b>: ' + data[key] + '<br>'); }</script>", '</div>')
, CONCAT("<script>var data = JSON.parse('", l.formData, "'); for (var key in data) {
, CONCAT('<script>var data = ', l.formData, "; for (var key in data) {
document.write('<b>' + key + '</b>: ' + data[key] + '<br>'); }</script>")
FROM FormSubmitLog AS l
LEFT JOIN Form AS f
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment