diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-05-21 23:35:39 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-06-28 22:41:57 +0200 |
commit | 22ee1570249f5382cecbaa44f57f5fdc96e2b02a (patch) | |
tree | 999f6c599aaf963ccbb10e8eb23f85443a2e4fd0 /Bugzilla/WebService | |
parent | 09c70a582658841bc9dfa758a20bbf6fb95383a7 (diff) | |
download | bugzilla-22ee1570249f5382cecbaa44f57f5fdc96e2b02a.tar.gz bugzilla-22ee1570249f5382cecbaa44f57f5fdc96e2b02a.tar.xz |
more working
Diffstat (limited to 'Bugzilla/WebService')
-rw-r--r-- | Bugzilla/WebService/Server/JSONRPC.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/WebService/Server/JSONRPC.pm b/Bugzilla/WebService/Server/JSONRPC.pm index 093167048..9253053ce 100644 --- a/Bugzilla/WebService/Server/JSONRPC.pm +++ b/Bugzilla/WebService/Server/JSONRPC.pm @@ -112,6 +112,9 @@ sub response { print $cgi->header(-status => $response->code, @header_args); print $response->content; } + if ($cgi->server_software eq 'Bugzilla::Quantum::CGI') { + $Bugzilla::C->rendered; + } } # The JSON-RPC 1.1 GET specification is not so great--you can't specify |