Working on changed $page to support http headers as well as html headers.

This commit is contained in:
green-ponies (jgen) 2011-08-30 13:14:03 -04:00
parent fca286913e
commit 19a3a5a6f9

View File

@ -140,7 +140,14 @@ class Page {
while(isset($this->html_headers[$position])) $position++; while(isset($this->html_headers[$position])) $position++;
$this->html_headers[$position] = $line; $this->html_headers[$position] = $line;
} }
/**
* Add a http header to be sent to the client.
*/
public function add_header($line) {
die("Function is not impliemented yet.");
}
/** /**
* Add a Block of data * Add a Block of data
*/ */