diff options
author | Dave Miller <justdave@mozilla.com> | 2012-11-20 20:02:39 +0100 |
---|---|---|
committer | Dave Miller <justdave@mozilla.com> | 2012-11-20 20:02:39 +0100 |
commit | ceafb43c1653b9f596965b8ead840f4cd6a29156 (patch) | |
tree | 74abf9145597e7270e81f5b927ae475805edd637 /Bugzilla | |
parent | 3c9cbab0743dd8ae1479976f9d47f47af3fa46d5 (diff) | |
download | bugzilla-ceafb43c1653b9f596965b8ead840f4cd6a29156.tar.gz bugzilla-ceafb43c1653b9f596965b8ead840f4cd6a29156.tar.xz |
Bug 640756 - Make the documentation clearer that attachments created with Bug.add_attachment must by of type 'base64' when non-ASCII
.
r=LpSolit, a=LpSolit
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/WebService/Bug.pm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm index 10209eafa..7a29d325f 100644 --- a/Bugzilla/WebService/Bug.pm +++ b/Bugzilla/WebService/Bug.pm @@ -2585,7 +2585,9 @@ these bugs. =item C<data> -B<Required> C<base64> The content of the attachment. +B<Required> C<base64> or C<string> The content of the attachment. +If the content of the attachment is not ASCII text, you must encode +it in base64 and declare it as the C<base64> type. =item C<file_name> |