1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-18 12:52:42 +01:00

Obvious: emit each header once, not the last header N times.

This commit is contained in:
epriestley 2012-02-06 13:14:17 -08:00
parent 36e72639de
commit e0c38b0644

View file

@ -88,6 +88,7 @@ abstract class AphrontHTTPSink {
}
foreach ($headers as $header) {
list($name, $value) = $header;
$this->emitHeader($name, $value);
}
}