aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor <pashev.igor@gmail.com>2010-11-19 14:27:57 +0300
committerIgor <pashev.igor@gmail.com>2010-11-19 14:27:57 +0300
commit902d6ec2f5208a799feff916fa9cd739807453cb (patch)
treedf9ce73bbf124c2a0b20cb2d492c02db92609017
parente3fe33c17270d75510931d6d02efe76d645b825f (diff)
downloaddokuwiki-plugin-papers-902d6ec2f5208a799feff916fa9cd739807453cb.tar.gz
Fixed volume formating in article
-rw-r--r--bibtex.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bibtex.php b/bibtex.php
index a66b0c6..6979855 100644
--- a/bibtex.php
+++ b/bibtex.php
@@ -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']))
{