diff options
-rw-r--r-- | it_url.class | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/it_url.class b/it_url.class index 2664169..851c1d9 100644 --- a/it_url.class +++ b/it_url.class @@ -203,6 +203,9 @@ static function curl_opts($p=array()) ]; $add = []; + if (it::grep("[\n\r]", it::map('"$k$v"', $p['headers']))) + it::error(['title' => "Newline in headers", 'body' => $p['headers']]); + foreach ($p['headers'] as $header => $value) $headers[] = strtr("$header: $value", "\n\r", ' '); |