diff options
author | Arno Teigseth <arnotixe@gmail.com> | 2012-07-21 21:58:41 -0500 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-07-23 21:14:01 +0100 |
commit | 8cdd150a0aae3ec3b2829ad6c45da5cb58f1bcc3 (patch) | |
tree | 069beb9c942ea4be064e96fcecd8b09ecd81069e /shell | |
parent | db9630667061789106a5864300ca73d83d04aa73 (diff) |
Fixed multiple attachment passing to thunderbird: file:// part needs 's
Change-Id: I365e559610e06c6ffe964121b3c45077bf6ca264
Diffstat (limited to 'shell')
-rwxr-xr-x | shell/source/unix/misc/senddoc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/unix/misc/senddoc.sh b/shell/source/unix/misc/senddoc.sh index f75e51d851c5..2a4c4142f9a7 100755 --- a/shell/source/unix/misc/senddoc.sh +++ b/shell/source/unix/misc/senddoc.sh @@ -112,7 +112,7 @@ case `basename "$MAILER" | sed 's/-.*$//'` in COMMAND=${COMMAND:-}${COMMAND:+,}body=${BODY} fi if [ "$ATTACH" != "" ]; then - COMMAND=${COMMAND:-}${COMMAND:+,}attachment=${ATTACH} + COMMAND=${COMMAND:-}${COMMAND:+,}attachment=\'${ATTACH}\' fi run_mozilla "$MAILER" "$COMMAND" |