@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | if (!preg_match("~^https?://~", $source)) { |
| 39 | 39 | if (!file_exists($this->source)) { |
| 40 | - throw new NotFoundException("The specified file " . $this->source . " does not exists"); |
|
| 40 | + throw new NotFoundException("The specified file ".$this->source." does not exists"); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | $this->sourceType = "FILE"; |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | throw new DatasetException("TextFileDataset Socket error: $errstr ($errno)"); |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | - $out = "GET " . $urlParts[4] . " HTTP/1.1\r\n"; |
|
| 83 | - $out .= "Host: " . $urlParts[2] . "\r\n"; |
|
| 82 | + $out = "GET ".$urlParts[4]." HTTP/1.1\r\n"; |
|
| 83 | + $out .= "Host: ".$urlParts[2]."\r\n"; |
|
| 84 | 84 | $out .= "Connection: Close\r\n\r\n"; |
| 85 | 85 | |
| 86 | 86 | try { |