Browse Source

removes comments from default view

pull/63/merge
Martin Monperrus 9 years ago
parent
commit
f7f03dd65e
  1. 13
      bibtexbrowser.php

13
bibtexbrowser.php

@ -2337,14 +2337,6 @@ function DefaultBibliographyStyle(&$bibentry) {
$result = implode(", ",$entry).'.'; $result = implode(", ",$entry).'.';
// some comments (e.g. acceptance rate)?
if ($bibentry->hasField('comment')) {
$result .= " <span class=\"bibcomment\">(".$bibentry->getField("comment").")</span>";
}
if ($bibentry->hasField('note')) {
$result .= " (".$bibentry->getField("note").")";
}
// add the Coin URL // add the Coin URL
$result .= $bibentry->toCoins(); $result .= $bibentry->toCoins();
@ -2443,11 +2435,6 @@ function JanosBibliographyStyle(&$bibentry) {
$result = implode(", ",$entry).'.'; $result = implode(", ",$entry).'.';
// some comments (e.g. acceptance rate)?
if ($bibentry->hasField('comment')) {
$result .= " (".$bibentry->getField("comment").")";
}
// add the Coin URL // add the Coin URL
$result .= "\n".$bibentry->toCoins(); $result .= "\n".$bibentry->toCoins();

Loading…
Cancel
Save