diff --git a/openerp/http.py b/openerp/http.py index e3de9c95665..18b91b94e20 100644 --- a/openerp/http.py +++ b/openerp/http.py @@ -160,6 +160,8 @@ def redirect_with_hash(url, code=303): # See extensive test page at http://greenbytes.de/tech/tc/httpredirects/ if request.httprequest.user_agent.browser in ('firefox',): return werkzeug.utils.redirect(url, code) + if urlparse.urlparse(url, scheme='http').scheme not in ('http', 'https'): + url = 'http://' + url url = url.replace("'", "%27").replace("<", "%3C") return "" % url