diff options
author | reed%reedloden.com <> | 2007-03-02 15:55:39 +0100 |
---|---|---|
committer | reed%reedloden.com <> | 2007-03-02 15:55:39 +0100 |
commit | 439851b43d129eaa04b2d29438956db8add6de30 (patch) | |
tree | 69422d27dc24ea6d5388e9ee254223c654c7178e /template/en/default/attachment | |
parent | 686b89edc4f05efdce9c11fd9fc3d89e992c301d (diff) | |
download | bugzilla-439851b43d129eaa04b2d29438956db8add6de30.tar.gz bugzilla-439851b43d129eaa04b2d29438956db8add6de30.tar.xz |
Bug 371833 - ""Edit attachment as comment" could be twice as fast" [p=bz/reed r=timeless a=mkanat]
Diffstat (limited to 'template/en/default/attachment')
-rw-r--r-- | template/en/default/attachment/edit.html.tmpl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/template/en/default/attachment/edit.html.tmpl b/template/en/default/attachment/edit.html.tmpl index 1dbda953a..94581ab56 100644 --- a/template/en/default/attachment/edit.html.tmpl +++ b/template/en/default/attachment/edit.html.tmpl @@ -82,8 +82,7 @@ // Copy the contents of the diff into the textarea var editFrame = document.getElementById('editFrame'); - editFrame.value = theContent; - editFrame.value += "\n\n"; + editFrame.value = theContent + "\n\n"; has_edited = 1; } |