From f7f03dd65ee29ae774e69902cdfb512f2f6c9fee Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Sat, 5 Nov 2016 22:58:29 +0100 Subject: [PATCH] removes comments from default view --- bibtexbrowser.php | 13 ------------- 1 file changed, 13 deletions(-) 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();