Discussion module:Mapframe
Ajouter un sujetApparence
Dernier commentaire : il y a 1 an par Kristian-Clausal dans le sujet Line 791
Line 791
[modifier le code]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)