diff options
Diffstat (limited to 'src/gdialog.in')
-rwxr-xr-x | src/gdialog.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdialog.in b/src/gdialog.in index ff47010d..b2045326 100755 --- a/src/gdialog.in +++ b/src/gdialog.in @@ -227,7 +227,7 @@ ARG: while ($argn < $args) { # an untitled column for the check or radio buttons # and the 'text' arg as a second column header - $command .= "--list $list --column='' --column $element "; + $command .= "--list $list --column='' --column \"$element\" "; # should output be line by line? if ($separator) { @@ -248,7 +248,7 @@ ARG: while ($argn < $args) { while ($argn < $args) { get_arg; - $command .= "NULL $element "; + $command .= "NULL \"$element\" "; $argn += 3; } last ARG; |