|
|
@ -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; |
|
|
|
} |
|
|
|
|
|
|
|
?>
|
|
|
|
?>
|