diff --git a/bibtexbrowser-style-janos.php b/bibtexbrowser-style-janos.php index ac8a678..9cff186 100755 --- a/bibtexbrowser-style-janos.php +++ b/bibtexbrowser-style-janos.php @@ -53,11 +53,7 @@ function JanosBibliographyStyle(&$bibentry) { //// ******* EDITOR $editor=''; if ($bibentry->hasField(EDITOR)) { - $editors = array(); - foreach ($bibentry->getEditors() as $ed) { - $editors[]=formatAuthor($ed); - } - $editor = implode(', ',$editors).', '.(count($editors)>1?'eds.':'ed.'); + $editors = $bibentry->getFormattedEditors(); } if ($booktitle!='') { @@ -106,4 +102,4 @@ function JanosBibliographyStyle(&$bibentry) { return $result; } -?> \ No newline at end of file +?>