Content deleted Content added
No edit summary |
No edit summary |
||
Line 15:
function is_set( var )
return not (var == nil or var == '');
end
Line 61 ⟶ 49:
end
contributors = args.last1 .. args.first .. ' et al.';
elseif not is_set (args.last4) and is_set (args.last3) and is_set (args.last2) and is_set (args.last1) then
contributors = args.last1 .. args.first .. ', ' .. args.last2 .. ' & ' .. args.last3;
elseif not is_set (args.last4) and not is_set (args.last3) and is_set (args.last2) and is_set (args.last1) then
contributors = args.last1 .. args.first .. ' & ' .. args.last2;
elseif not is_set (args.last4) and not is_set (args.last3) and not is_set (args.last2) and is_set (args.last1) then
contributors = args.last1 .. args.first;
else
|