From ce879b2541026f53e6af4aa1e6a27d6e07c0bda8 Mon Sep 17 00:00:00 2001 From: zumbrunn Date: Wed, 26 Mar 2008 18:11:22 +0000 Subject: [PATCH] fixed see tags for getMultipartType, setMultipartType and addPart that were pointing to wrong places --- helma/Mail.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/helma/Mail.js b/helma/Mail.js index f906a35f..a859acef 100644 --- a/helma/Mail.js +++ b/helma/Mail.js @@ -386,7 +386,7 @@ helma.Mail = function(host, port) { * "mixed" for messages of type multipart/mixed. A common value * is "alternative" for the multipart/alternative MIME type. * @param {String} messageType the MIME subtype such as "mixed" or "alternative". - * @see #setMultipartType + * @see #getMultipartType * @see #addPart */ this.setMultipartType = function(messageType) { @@ -399,7 +399,7 @@ helma.Mail = function(host, port) { * "mixed" for messages of type multipart/mixed. * @return the MIME subtype * @type String - * @see #getMultipartType + * @see #setMultipartType * @see #addPart */ this.getMultipartType = function(messageType) { @@ -418,7 +418,7 @@ helma.Mail = function(host, port) { * @param {fileOrMimeObjectOrString} obj File, Mime object or String to attach to the email * @param {String} filename optional name of the attachment * @param {String} contentType optional content type (only if first argument is a string) - * @see global.getUrl + * @see global.getURL * @see helma.util.MimePart * @see helma.File */