diff options
author | Igor <pashev.igor@gmail.com> | 2010-11-19 14:27:57 +0300 |
---|---|---|
committer | Igor <pashev.igor@gmail.com> | 2010-11-19 14:27:57 +0300 |
commit | 902d6ec2f5208a799feff916fa9cd739807453cb (patch) | |
tree | df9ce73bbf124c2a0b20cb2d492c02db92609017 | |
parent | e3fe33c17270d75510931d6d02efe76d645b825f (diff) | |
download | dokuwiki-plugin-papers-902d6ec2f5208a799feff916fa9cd739807453cb.tar.gz |
Fixed volume formating in article
-rw-r--r-- | bibtex.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -573,7 +573,7 @@ class BibtexParserTeam extends BibtexParser { $part .= (empty($part) ? '' : ', ') . $this->entry['number']; } - $parts[] = $part; + if (!empty($part)) $parts[] = $part; if (!empty($this->entry['pages'])) { |