Skip to content

Commit

Permalink
Use the full path to the partials
Browse files Browse the repository at this point in the history
When trying to use the issue form in a plugin, it would try to use the
relative path to the partials which were incorrect.

  Example: would render 'my_plugin_views/attributes'

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4089 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
edavis10 committed Sep 15, 2010
1 parent be6e092 commit bde8ab8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/issues/_attributes.rhtml
Expand Up @@ -40,6 +40,6 @@
</div>

<div style="clear:both;"> </div>
<%= render :partial => 'form_custom_fields' %>
<%= render :partial => 'issues/form_custom_fields' %>
<% end %>
2 changes: 1 addition & 1 deletion app/views/issues/_form.rhtml
Expand Up @@ -20,7 +20,7 @@
</div>

<div id="attributes" class="attributes">
<%= render :partial => 'attributes' %>
<%= render :partial => 'issues/attributes' %>
</div>

<% if @issue.new_record? %>
Expand Down

0 comments on commit bde8ab8

Please sign in to comment.