dynamic update of now/next clip infobox added

This commit is contained in:
sebastian 2005-07-23 18:04:47 +00:00
parent b87375f90c
commit cc1830560a
18 changed files with 2609 additions and 2491 deletions

View file

@ -387,7 +387,8 @@ class uiBrowser extends uiBase {
if ($handle = @fsockopen($host, $port, $errno, $errstr, 10)) {
fputs($handle, "GET $uri HTTP/1.0\r\n\r\n");
fputs($handle, "GET $uri HTTP/1.0\r\n");
fputs($handle, "Host: $host:$port\r\n\r\n");
$data = fread($handle, 1024);
list($header, $lost) = explode("\r\n\r\n", $data);
eregi("^[^\r^\n]*", $data, $piece);