View | Details | Raw Unified | Return to bug 36235
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/js/fetch/system-preferences-api-client.js (-2 / +1 lines)
Lines 32-38 export class SysprefAPIClient extends HttpClient { Link Here
32
                        .map(variable =>
32
                        .map(variable =>
33
                            sysprefs[variable].length
33
                            sysprefs[variable].length
34
                                ? sysprefs[variable].map(value =>
34
                                ? sysprefs[variable].map(value =>
35
                                      "%s=%s".format(variable, value)
35
                                      "%s=%s".format(variable, encodeURIComponent(value))
36
                                  )
36
                                  )
37
                                : "%s=".format(variable)
37
                                : "%s=".format(variable)
38
                        )
38
                        )
39
- 

Return to bug 36235