Add newline after JSON and XML responses

This commit is contained in:
Kijin Sung 2024-04-16 21:38:56 +09:00
parent 114755d13a
commit d0183268ce
3 changed files with 8 additions and 8 deletions

View file

@ -18,7 +18,7 @@ class XMLDisplayHandler
$xmlDoc .= $this->_makeXmlDoc($variables);
$xmlDoc .= "</response>";
$xmlDoc .= "</response>\n";
return $xmlDoc;
}