From 5b755a7e823f9639e081b4895e8215b055c57b44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Frederik=20M=C3=B6llers?= Date: Fri, 27 Mar 2026 00:19:19 +0100 Subject: [PATCH] Fix notes for @misc items Note was shown twice --- bibtexbrowser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index 113e32a..bf5d535 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -2590,7 +2590,7 @@ function JanosBibliographyStyle($bibentry) { } // some notes (e.g. "accepted for publishing")? - if ($bibentry->hasField('note')) { + if (($type!="misc") && $bibentry->hasField('note')) { $result .= " (".$bibentry->getField("note").")"; }