Discussion module:Mapframe

Le contenu de la page n’est pas pris en charge dans d’autres langues.
Une page de Wikipédia, l'encyclopédie libre.

There is a minor bug on line 791:

--[[' ' for unbreakability and better visual, CSS alternative must be tried]]
attribs.text = ' ' .. util.getParameterValue(args, 'text') or ' ' .. L10n.defaults.text

If util.getParameterValue returns nil, this will cause an error now because of the .. concatenation (can't concatenate a nil value). Possible fix:

attribs.text = ' ' .. (util.getParameterValue(args, 'text') or L10n.defaults.text)

Kristian-Clausal (discuter) 19 mars 2024 à 09:56 (CET)[répondre]