diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-01-28 09:37:33 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-01-28 09:37:33 -0800 |
commit | c011b0e1f63215a4389658ca0a6edcef47a0ea8c (patch) | |
tree | a23c58e147a894a6ae2bd93ca05b303477fe1d47 | |
parent | 44b372077c64b0f051051c6dd16a88f1507c507f (diff) |
Secure the t("Completed") call.
-rw-r--r-- | modules/gallery/views/form_uploadify.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/form_uploadify.html.php b/modules/gallery/views/form_uploadify.html.php index b3b81ecb..137cb353 100644 --- a/modules/gallery/views/form_uploadify.html.php +++ b/modules/gallery/views/form_uploadify.html.php @@ -58,7 +58,7 @@ "<li class=\"g-error\">" + fileObj.name + " - " + msg[1] + "</li>"); } else { $("#g-add-photos-status ul").append( - "<li class=\"g-success\">" + fileObj.name + " - <?= t("Completed") ?></li>"); + "<li class=\"g-success\">" + fileObj.name + " - " + <?= t("Completed")->for_js() ?> + "</li>"); } return true; }, |