Author: bob Date: 2012-04-13 19:34:45 +0100 (Fri, 13 Apr 2012) New Revision: 1335
Modified: trunk/templates/edit_form.tt Log: escape an end tag in JS . So Test::HTML::content will shut up. closes #262
Modified: trunk/templates/edit_form.tt =================================================================== --- trunk/templates/edit_form.tt 2012-04-13 18:18:40 UTC (rev 1334) +++ trunk/templates/edit_form.tt 2012-04-13 18:34:45 UTC (rev 1335) @@ -171,8 +171,8 @@ }
$(document).ready(function() { - $("#pick_locale").html("<a href='javascript:pick_locale()'>pick Locale</a>"); - $("#pick_category").html("<a href='javascript:pick_category()'>pick Category</a>"); + $("#pick_locale").html("<a href='javascript:pick_locale()'>pick Locale</a>"); + $("#pick_category").html("<a href='javascript:pick_category()'>pick Category</a>"); }); </script>
openguides-commits@lists.openguides.org