summaryrefslogtreecommitdiffstats
path: root/app/views/journals
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-16 13:19:33 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2008-02-16 13:19:33 +0000
commit1c8cf4ef8338736ebcaa905f8932545a24e817c6 (patch)
tree1511225a9139cd3f2113c9b908a88c70f4166958 /app/views/journals
parentabb0b15407b33cbe50dc263474631c5bfcf2bd5f (diff)
downloadredmine-1c8cf4ef8338736ebcaa905f8932545a24e817c6.tar.gz
redmine-1c8cf4ef8338736ebcaa905f8932545a24e817c6.zip
Added the following permissions (#527, #585, #627):
* edit_issue_notes: let user edit any notes * edit_own_issue_notes: let user edit his own notes only git-svn-id: http://redmine.rubyforge.org/svn/trunk@1152 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/journals')
-rw-r--r--app/views/journals/update.rjs11
1 files changed, 8 insertions, 3 deletions
diff --git a/app/views/journals/update.rjs b/app/views/journals/update.rjs
index 9da0ebeae..2b5a54c0a 100644
--- a/app/views/journals/update.rjs
+++ b/app/views/journals/update.rjs
@@ -1,3 +1,8 @@
-page.replace "journal-#{@journal.id}-notes", render_notes(@journal)
-page.show "journal-#{@journal.id}-notes"
-page.remove "journal-#{@journal.id}-form"
+if @journal.frozen?
+ # journal was destroyed
+ page.remove "change-#{@journal.id}"
+else
+ page.replace "journal-#{@journal.id}-notes", render_notes(@journal)
+ page.show "journal-#{@journal.id}-notes"
+ page.remove "journal-#{@journal.id}-form"
+end