summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2010-04-17 11:49:56 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2010-04-17 11:49:56 +0000
commite4e4b0f4b814a52e39e99185a0196d4398b720b4 (patch)
tree8df143e2ffd1bcb51c540df62818d9c8d1fbc401 /app
parent7e9d4811ecfe707f7d2c6def877ad24f137bc5a1 (diff)
downloadredmine-e4e4b0f4b814a52e39e99185a0196d4398b720b4.tar.gz
redmine-e4e4b0f4b814a52e39e99185a0196d4398b720b4.zip
Fixes error on subtask XML format (#5336).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3677 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r--app/views/issues/show.xml.builder2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/show.xml.builder b/app/views/issues/show.xml.builder
index 1237b8cde..4b1373955 100644
--- a/app/views/issues/show.xml.builder
+++ b/app/views/issues/show.xml.builder
@@ -9,7 +9,7 @@ xml.issue do
xml.assigned_to(:id => @issue.assigned_to_id, :name => @issue.assigned_to.name) unless @issue.assigned_to.nil?
xml.category(:id => @issue.category_id, :name => @issue.category.name) unless @issue.category.nil?
xml.fixed_version(:id => @issue.fixed_version_id, :name => @issue.fixed_version.name) unless @issue.fixed_version.nil?
- xml.parent(:id => issue.parent_id) unless @issue.parent.nil?
+ xml.parent(:id => @issue.parent_id) unless @issue.parent.nil?
xml.subject @issue.subject
xml.description @issue.description