diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-07 14:57:17 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-12-07 14:57:17 +0000 |
commit | 60c82a03dbdf00145a25f3443c72ee646736283e (patch) | |
tree | a9b84eb71145ccebcae63bc5e9ba36eea6374a99 /app | |
parent | 36c0ab196ca772c123e7327b6829b8387f9e0aeb (diff) | |
download | redmine-60c82a03dbdf00145a25f3443c72ee646736283e.tar.gz redmine-60c82a03dbdf00145a25f3443c72ee646736283e.zip |
Fixed drop down lists overflow on My account.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@960 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/my/account.rhtml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index 2dda62d70..0badc4b94 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -4,7 +4,10 @@ <h2><%=l(:label_my_account)%></h2> <%= error_messages_for 'user' %> -<% form_for :user, @user, :url => { :action => "account" }, :builder => TabularFormBuilder, :lang => current_language do |f| %> +<% form_for :user, @user, :url => { :action => "account" }, + :builder => TabularFormBuilder, + :lang => current_language, + :html => { :id => 'my_account_form' } do |f| %> <div class="splitcontentleft"> <h3><%=l(:label_information_plural)%></h3> <div class="box tabular"> |