diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-23 11:29:06 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-23 11:29:06 +0000 |
commit | 8abbbc9e39aeb21eccbf8b0336994c1b845906fa (patch) | |
tree | b1ec86e408b0d47bf183afcc21dc1a0b4cc82230 /shell | |
parent | e70332e4f60e1498d5fe8dca7a8a4a40b3ecf9bb (diff) |
INTEGRATION: CWS obr04 (1.2.254); FILE MERGED
2006/12/20 15:03:25 obr 1.2.254.1: #i72544# patch applied
Diffstat (limited to 'shell')
-rwxr-xr-x | shell/source/unix/misc/kde-open-url.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/source/unix/misc/kde-open-url.sh b/shell/source/unix/misc/kde-open-url.sh index b5f240e76843..97a7bdf0aae7 100755 --- a/shell/source/unix/misc/kde-open-url.sh +++ b/shell/source/unix/misc/kde-open-url.sh @@ -51,9 +51,9 @@ esac # special handling for mailto: uris if echo $1 | grep '^mailto:' > /dev/null; then - kmailservice $1 & + kmailservice "$1" & else - kfmclient openURL $1 & + kfmclient openURL "$1" & fi exit 0 |