Module:Track listing: रिवीजन सभ के बीचा में अंतर

Content deleted Content added
fix logic error for collapsed track listings with a headline parameter
remove the non-breaking spaces from TrackListing:makeIntro - turns out they are not necessary
लाइन 221:
if self.all_writing then
return string.format(
'All tracks written by %s. ',
self.all_writing
)
elseif self.all_lyrics and self.all_music then
return string.format(
'All lyrics written by %s; all music composed by %s. ',
self.all_lyrics,
self.all_music
लाइन 232:
elseif self.all_lyrics then
return string.format(
'All lyrics written by %s. ',
self.all_lyrics
)
elseif self.all_music then
return string.format(
'All music composed by %s. ',
self.all_music
)