mark: A photo of Mark kneeling on top of the Taal Volcano in the Philippines. It was a long hike. (Default)
Mark Smith ([staff profile] mark) wrote in [site community profile] changelog2010-03-17 05:22 am

[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 [personal profile] afuna.

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'},
             {
--------------------------------------------------------------------------------