fix deprecation warning of the format in the template name

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10419 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-09-18 03:15:00 +00:00
parent a701bd5fbd
commit cbe28d75d0
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
$('#content').html('<%= escape_javascript(render :template => 'issues/bulk_edit.html') %>');
$('#content').html('<%= escape_javascript(render :template => 'issues/bulk_edit', :formats => [:html]) %>');

View File

@ -1 +1 @@
$('#content').html('<%= escape_javascript(render :template => 'repositories/new.html') %>');
$('#content').html('<%= escape_javascript(render :template => 'repositories/new', :formats => [:html]) %>');