# HG changeset patch # User raph # Date 1266942071 -32400 # Node ID e403cc287ea62dc1c089182e59d6097f92c57843 # Parent 3cebfa984ece95356c4d4000c48230ca1db539c0 stay on text list after text deletion (fixes #54) diff -r 3cebfa984ece -r e403cc287ea6 src/cm/templates/site/text_list.html --- a/src/cm/templates/site/text_list.html Tue Feb 16 09:20:12 2010 +0900 +++ b/src/cm/templates/site/text_list.html Wed Feb 24 01:21:11 2010 +0900 @@ -167,7 +167,7 @@ question = "{% blocktrans %}Are you sure you want to delete this text?{% endblocktrans %}"; if (confirm(question)) { $.post(url, function(data){ - window.location = '{% url index %}'; + window.location = '{% url text %}'; }); } });