Module:Message box: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
(bug fix: isSmall --> self.isSmall)
(change the smalltext logic to work with collapsible text fields)
Line 216: Line 216:


-- Get the self.issue value.
-- Get the self.issue value.
local sect = args.sect
if self.isSmall and args.smalltext then
self.issue = args.smalltext
if presentButBlank(sect) then
sect = 'This ' .. (cfg.sectionDefault or 'page')
elseif type(sect) == 'string' then
sect = 'This ' .. sect
else
else
sect = nil
local sect = args.sect
if presentButBlank(sect) then
sect = 'This ' .. (cfg.sectionDefault or 'page')
elseif type(sect) == 'string' then
sect = 'This ' .. sect
else
sect = nil
end
local issue = args.issue
issue = type(issue) == 'string' and issue or nil
local text = args.text
text = type(text) == 'string' and text or nil
local issues = {}
tinsert(issues, sect)
tinsert(issues, issue)
tinsert(issues, text)
self.issue = tconcat(issues, ' ')
end
end
local issue = args.issue
issue = type(issue) == 'string' and issue or nil
local text = args.text
text = type(text) == 'string' and text or nil
local issues = {}
tinsert(issues, sect)
tinsert(issues, issue)
tinsert(issues, text)
self.issue = tconcat(issues, ' ')


-- Get the self.talk value.
-- Get the self.talk value.
Line 274: Line 278:
-- and also by ambox when small=yes.
-- and also by ambox when small=yes.
if self.isSmall then
if self.isSmall then
self.text = args.smalltext or args.text
if self.useCollapsibleTextFields then
self.text = args.smalltext or self.issue
else
self.text = args.smalltext or args.text
end
else
else
self.text = args.text
self.text = args.text