diff options
author | Urban Müller | 2022-08-11 15:48:41 +0200 |
---|---|---|
committer | Urban Müller | 2022-08-11 15:48:41 +0200 |
commit | 15e6fdfe0c57d7568dd45822139b1b7d19618b65 (patch) | |
tree | fb7a0a6c856b1a6d3213ba494bf60b1c805f39d8 | |
parent | 0e2dd0ba5876028ac2cdaff8bc745837a2222593 (diff) | |
download | itools-15e6fdfe0c57d7568dd45822139b1b7d19618b65.tar.gz itools-15e6fdfe0c57d7568dd45822139b1b7d19618b65.tar.bz2 itools-15e6fdfe0c57d7568dd45822139b1b7d19618b65.zip |
warn about newlines in headers
-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", ' '); |