[dw-free] Apostrophes in the translation string prevents the tag deletion confirmation from popping
[commit: http://hg.dwscoalition.org/dw-free/rev/44f1dea92afd]
http://bugs.dwscoalition.org/show_bug.cgi?id=2444
Escape the translation string used to confirm deleting tags.
Patch by
afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2444
Escape the translation string used to confirm deleting tags.
Patch by
Files modified:
- htdocs/manage/tags.bml
--------------------------------------------------------------------------------
diff -r d0066832b09a -r 44f1dea92afd htdocs/manage/tags.bml
--- a/htdocs/manage/tags.bml Wed Mar 17 05:18:12 2010 +0000
+++ b/htdocs/manage/tags.bml Wed Mar 17 05:22:54 2010 +0000
@@ -275,7 +275,7 @@ HEAD
);
$ret .= '<br /><br />';
- my $del_conf = $ML{'.confirm.delete'};
+ my $del_conf = LJ::ejs( $ML{'.confirm.delete'} );
$ret .= LJ::html_submit(
'delete', $ML{'.button.delete'},
{
--------------------------------------------------------------------------------
