mirror of
https://github.com/frappe/erpnext.git
synced 2026-06-08 23:52:57 +00:00
urllib quote encoding fix
This commit is contained in:
@@ -258,8 +258,8 @@ def get_outer_env(page_name, args):
|
|||||||
if not args.top_bar_background:
|
if not args.top_bar_background:
|
||||||
args.top_bar_background = "Black"
|
args.top_bar_background = "Black"
|
||||||
|
|
||||||
args.url = quote(get_request_site_address(full_address=True), "")
|
args.url = quote(str(get_request_site_address(full_address=True)), str(""))
|
||||||
args.encoded_title = quote(args.title or "", "")
|
args.encoded_title = quote(str(args.title or ""), str(""))
|
||||||
|
|
||||||
return args
|
return args
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user