diff options
author | P. J. McDermott <pjm@nac.net> | 2012-08-02 13:20:48 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2012-08-02 13:20:48 (EDT) |
commit | 8de7ad41e4a15092f68a5eb540a2c0faec99eed5 (patch) | |
tree | 40dc51418a1da2622e1989ac8d2d8a1075672bfd /lib | |
parent | f2b0cd173982911f6ba47f783ca9152ff9811b54 (diff) |
Internationalize list item separator.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/control.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/control.sh b/lib/control.sh index 821010b..5aabdeb 100644 --- a/lib/control.sh +++ b/lib/control.sh @@ -163,7 +163,8 @@ ${_value}'" # Missing required control fields. _control_parse_error "${_control}" 0 \ "${oh_str_control_missing_fields}" \ - "$(echo "${_req}" | sed 's/ / /g' | sed 's/ /,/g')" + "$(echo "${_req}" | sed 's/ / /g' | \ + sed "s/ /${oh_str_list_item_separator}/g")" fi } |