mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
8756d82cf6
Summary: I'm pretty sure that `@group` annotations are useless now... see D9855. Also fixed various other minor issues. Test Plan: Eye-ball it. Reviewers: #blessed_reviewers, epriestley, chad Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin, hach-que Differential Revision: https://secure.phabricator.com/D9859
16 lines
415 B
PHP
16 lines
415 B
PHP
<?php
|
|
|
|
final class Aphront304Response extends AphrontResponse {
|
|
|
|
public function getHTTPResponseCode() {
|
|
return 304;
|
|
}
|
|
|
|
public function buildResponseString() {
|
|
// IMPORTANT! According to the HTTP/1.1 spec (RFC 2616) a 304 response
|
|
// "MUST NOT" have any content. Apache + Safari strongly agree, and
|
|
// completely flip out and you start getting 304s for no-cache pages.
|
|
return null;
|
|
}
|
|
|
|
}
|