- again changes done to the bible footer

This commit is contained in:
andreas 2010-05-27 18:58:00 +02:00
parent dfd53e5628
commit 039792104b
1 changed files with 3 additions and 7 deletions

View File

@ -499,16 +499,12 @@ class BibleMediaItem(MediaManagerItem):
else:
verse_text = self.formatVerse(old_chapter, chapter, verse, u'', u'')
old_chapter = chapter
footer = u'%s' % (book)
#If not found add book to footer
if footer not in raw_footer:
raw_footer.append(footer)
footer = u'%s %s' % (version, copyright)
#If not found add version and copyright to footer
footer = u'%s (%s %s)' % (book, version, copyright)
#If not found add to footer
if footer not in raw_footer:
raw_footer.append(footer)
if bible2:
footer = u'%s %s' % (bible2_version, bible2_copyright)
footer = u'%s (%s %s)' % (book, bible2_version, bible2_copyright)
#If not found add second version and copyright to footer
if footer not in raw_footer:
raw_footer.append(footer)