-
Notifications
You must be signed in to change notification settings - Fork 445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
URLs are often double-escaped in smarty templates #4569
Labels
Housekeeping:1:Todo
Any dependency management or refactor that would be nice to have some day.
Try Me
This issue might be good for a new contributor. Can you help us?
Milestone
Comments
NateWr
added
the
Try Me
This issue might be good for a new contributor. Can you help us?
label
Mar 4, 2019
There is one case where the form
The
|
NateWr
added a commit
to NateWr/pkp-lib
that referenced
this issue
Sep 5, 2022
NateWr
added a commit
to NateWr/ojs
that referenced
this issue
Sep 5, 2022
NateWr
added a commit
to NateWr/omp
that referenced
this issue
Sep 5, 2022
NateWr
added a commit
to NateWr/ops
that referenced
this issue
Sep 5, 2022
NateWr
added
the
Housekeeping:1:Todo
Any dependency management or refactor that would be nice to have some day.
label
Sep 5, 2022
NateWr
added a commit
that referenced
this issue
Sep 6, 2022
#4569 Use json_encode for URLs passed to JavaScript
NateWr
added a commit
to pkp/omp
that referenced
this issue
Sep 6, 2022
pkp/pkp-lib#4569 Don't double-escape URLs
NateWr
added a commit
to pkp/ops
that referenced
this issue
Sep 6, 2022
pkp/pkp-lib#4569 Don't double-escape URLs
NateWr
added a commit
to pkp/ojs
that referenced
this issue
Sep 6, 2022
pkp/pkp-lib#4569 Don't double-escape URLs
Merged to |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Housekeeping:1:Todo
Any dependency management or refactor that would be nice to have some day.
Try Me
This issue might be good for a new contributor. Can you help us?
We often use
{url|escape ...}
in a Smarty template when the URL contains user input. However, the{url}
function already escapes the final URL, so this is unnecessary.All instances of
{url|escape ...}
should be changed to{url ...}
.The text was updated successfully, but these errors were encountered: