--- MPIWGWeb/bibliography.py 2005/11/16 19:09:28 1.7.2.3 +++ MPIWGWeb/bibliography.py 2005/11/22 17:58:27 1.7.2.4 @@ -32,7 +32,10 @@ def formatBiblHelp(self,found,table,id,f ret+=getBib(CRListToSemicolon(foundIB.author))+". ""+getBib(foundIB.title)+". " "+"%s"%getBib(foundIB.secondary_title)+" "+getBib(foundIB.volume)+" (" if not self.ZSQLisEmpty(foundIB.number): ret+=foundIB.number+" " - ret+=foundIB.year+")" + + if foundIB.year: + ret+=getattr(foundIB,'year','') + ret+=")" if foundIB.pages and (not foundIB.pages)=='': ret+=": "+foundIB.pages+"."