summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
d115f9d)
RFC5023 <https://tools.ietf.org/html/rfc5023> specifies that the
content type parameter 'type=entry' should be used to clarify data.
function showSingleAtomStatus($notice)
{
function showSingleAtomStatus($notice)
{
- header('Content-Type: application/atom+xml; charset=utf-8');
+ header('Content-Type: application/atom+xml;type=entry;charset="utf-8"');
+ print '<?xml version="1.0" encoding="UTF-8"?>' . "\n";
print $notice->asAtomEntry(true, true, true, $this->scoped);
}
print $notice->asAtomEntry(true, true, true, $this->scoped);
}