summaryrefslogtreecommitdiffstats
path: root/app/views/settings
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-26 19:56:25 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2007-01-26 19:56:25 +0000
commit845460b16525dc350a12a9f1bde2109caa1a53b6 (patch)
tree746f9b896bc13b3165c4507652adfe8294fa3efc /app/views/settings
parent7c27fb7c1d9866f68b9e444cd3af68256cdc637a (diff)
downloadredmine-845460b16525dc350a12a9f1bde2109caa1a53b6.tar.gz
redmine-845460b16525dc350a12a9f1bde2109caa1a53b6.zip
deprecated start_form_tag replaced by form_tag
git-svn-id: http://redmine.rubyforge.org/svn/trunk@184 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/settings')
-rw-r--r--app/views/settings/edit.rhtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/settings/edit.rhtml b/app/views/settings/edit.rhtml
index d1ec82200..625daa09a 100644
--- a/app/views/settings/edit.rhtml
+++ b/app/views/settings/edit.rhtml
@@ -1,6 +1,6 @@
<h2><%= l(:label_settings) %></h2>
-<%= start_form_tag({:action => 'edit'}, :class => "tabular") %>
+<% form_tag({:action => 'edit'}, :class => "tabular") do %>
<div class="box">
<p><label><%= l(:setting_app_title) %></label>
<%= text_field_tag 'settings[app_title]', Setting.app_title, :size => 30 %></p>
@@ -34,4 +34,4 @@
</div>
<%= submit_tag l(:button_save) %>
-<%= end_form_tag %> \ No newline at end of file
+<% end %> \ No newline at end of file