Changes between Initial Version and Version 1 of Ticket #8384, comment 58
- Timestamp:
- 2020-01-22T20:54:08+01:00 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #8384, comment 58
initial v1 1 1 Paste tags fails when a value contains equal sign and another value contains a space, for example: 2 2 3 {{{ 3 4 name=Main street 4 5 url=http://foo.bar/?id=1 6 }}} 5 7 6 8 Result after pasting text above (stable version #8969): 7 9 10 {{{ 8 11 name=Main 9 12 street=url=http://foo.bar/?id=1 13 }}} 10 14 11 15 Workaround until fix: quoting the values. It's enough to quote the value with equal sign: 12 16 17 {{{ 13 18 name=Main street 14 19 url="http://foo.bar/?id=1" 20 }}}