From 9df05dae1b35c5d70f7394471cbb8df073c41e27 Mon Sep 17 00:00:00 2001 From: drfho Date: Wed, 19 Jan 2022 22:40:52 +0100 Subject: [PATCH] fixed url param sep --- Products/zms/_deprecatedapi.py | 4 ++-- Products/zms/standard.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Products/zms/_deprecatedapi.py b/Products/zms/_deprecatedapi.py index 2ce6196ff..bb43b93bf 100644 --- a/Products/zms/_deprecatedapi.py +++ b/Products/zms/_deprecatedapi.py @@ -380,11 +380,11 @@ def aggregate_list(self, l, i): warn(self, 'aggregate_list', 'Products.zms.standard.aggregate_list') return standard.aggregate_list(l, i) - def url_append_params(self, url, dict, sep='&'): + def url_append_params(self, url, dict, sep='&'): warn(self, 'url_append_params', 'Products.zms.standard.url_append_params') return standard.url_append_params(url, dict, sep) - def url_inherit_params(self, url, REQUEST, exclude=[], sep='&'): + def url_inherit_params(self, url, REQUEST, exclude=[], sep='&'): warn(self, 'url_inherit_params', 'Products.zms.standard.url_inherit_params') return standard.url_inherit_params(url, REQUEST, exclude, sep) diff --git a/Products/zms/standard.py b/Products/zms/standard.py index a398274ed..d373c2788 100644 --- a/Products/zms/standard.py +++ b/Products/zms/standard.py @@ -324,7 +324,7 @@ def umlaut_quote(s, mapping={}): security.declarePublic('url_append_params') -def url_append_params(url, dict, sep='&'): +def url_append_params(url, dict, sep='&'): """ Append params from dict to given url. @param url: Url @@ -368,7 +368,7 @@ def url_append_params(url, dict, sep='&'): security.declarePublic('url_inherit_params') -def url_inherit_params(url, REQUEST, exclude=[], sep='&'): +def url_inherit_params(url, REQUEST, exclude=[], sep='&'): """ Inerits params from request to given url. @param url: Url