diff --git a/bibtexbrowser.php b/bibtexbrowser.php index 1ee4153..3f18039 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -2337,14 +2337,6 @@ function DefaultBibliographyStyle(&$bibentry) { $result = implode(", ",$entry).'.'; - // some comments (e.g. acceptance rate)? - if ($bibentry->hasField('comment')) { - $result .= " (".$bibentry->getField("comment").")"; - } - if ($bibentry->hasField('note')) { - $result .= " (".$bibentry->getField("note").")"; - } - // add the Coin URL $result .= $bibentry->toCoins(); @@ -2443,11 +2435,6 @@ function JanosBibliographyStyle(&$bibentry) { $result = implode(", ",$entry).'.'; - // some comments (e.g. acceptance rate)? - if ($bibentry->hasField('comment')) { - $result .= " (".$bibentry->getField("comment").")"; - } - // add the Coin URL $result .= "\n".$bibentry->toCoins();