Page MenuHomePhabricator

Links with a = sign inside a table doesn't work
Closed, DeclinedPublic

Description

Author: support

Description:
Links with a = sign inside a table doesn't work, the example below gets messed
up and doesn't display the table at all.

{{newsbox-left|table|
[http://www.google.com?q=tomte a link]
}}


Version: 1.6.x
Severity: normal
Platform: PC

Details

Reference
bz5896

Event Timeline

bzimport raised the priority of this task from to Medium.Nov 21 2014, 9:13 PM
bzimport set Reference to bz5896.
bzimport added a subscriber: Unknown Object (MLST).

This is because you are using text with an "=" in it as a template parameter,
which is a known problem.

try this instead:
{{newsbox-left|table|
2=[http://www.google.com?q=tomte a link]
}}

The explicit "2=" makes it clear that the second parameter is the text after that
first "=" which may safely contain another "=".