Skip to content

Commit f14e322

Browse files
author
Jean Jordaan
committed
Fixed spelling of "supersede";
got rid of forms[0] in js, rather refer to the form by name.
1 parent d8435e4 commit f14e322

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/customizing.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Customising Roundup
33
===================
44

5-
:Version: $Revision: 1.86 $
5+
:Version: $Revision: 1.87 $
66

77
.. This document borrows from the ZopeBook section on ZPT. The original is at:
88
http://www.zope.org/Documentation/Books/ZopeBook/current/ZPT.stx
@@ -371,8 +371,8 @@ The messages and files properties list the links to the messages and files
371371
related to the issue. The nosy property is a list of links to users who wish to
372372
be informed of changes to the issue - they get "CC'ed" e-mails when messages
373373
are sent to or generated by the issue. The nosy reactor (in the detectors
374-
directory) handles this action. The superceder link indicates an issue which
375-
has superceded this one.
374+
directory) handles this action. The superseder link indicates an issue which
375+
has superseded this one.
376376
They also have the dynamically generated "creation", "activity" and "creator"
377377
properties.
378378
The value of the "creation" property is the date when an item was created, and

templates/classic/html/help_controls.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// initial values for either Nosy, Superceder, Topic and Waiting On,
2-
// depecding on which has called
1+
// initial values for either Nosy, Superseder, Topic and Waiting On,
2+
// depending on which has called
33

44
original_field = window.opener.document.itemSynopsis[field].value;
55

@@ -118,7 +118,7 @@ function resetList() {
118118

119119
function writePreview(val) {
120120
// writes a value to the text_preview
121-
document.forms[0].text_preview.value = val;
121+
document.frm_help.text_preview.value = val;
122122
}
123123

124124
function focusField(name) {

0 commit comments

Comments
 (0)