মডিউল:Message box: সংশোধিত সংস্করণের মধ্যে পার্থক্য
bug fix: isSmall --> self.isSmall |
change the smalltext logic to work with collapsible text fields |
||
২১৬ নং লাইন: | ২১৬ নং লাইন: | ||
-- Get the self.issue value. | -- Get the self.issue value. | ||
if self.isSmall and args.smalltext then | |||
self.issue = args.smalltext | |||
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 | ||
-- Get the self.talk value. | -- Get the self.talk value. | ||
২৭৪ নং লাইন: | ২৭৮ নং লাইন: | ||
-- 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 | |||
else | else | ||
self.text = args.text | self.text = args.text |