SVN commit 492748 by adawit: Do not sanitize proxy-authorization header either. M +2 -2 http.cc --- branches/KDE/3.5/kdelibs/kioslave/http/http.cc #492747:492748 @@ -171,8 +171,8 @@ QString header = (*it).lower(); // Do not allow Request line to be specified and ignore // the other HTTP headers. - if (header.find(':') == -1 || header.startsWith("host") || - header.startsWith("proxy-authorization") || + if (header.find(':') == -1 || + header.startsWith("host") || header.startsWith("via")) continue;