From e8c9a7971b0b293089a058117a849809293d62ba Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Sun, 2 Oct 2011 22:51:20 +0200 Subject: [PATCH] =?UTF-8?q?added=20support=20for=20linking=20to=20home=20p?= =?UTF-8?q?ages=20of=20editors=20(suggested=20by=20Sebastian=20Sch=C3=B6ps?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bibtexbrowser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index b302dfb..cd67626 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -1172,7 +1172,7 @@ class BibEntry { function getFormattedEditors() { $editors = array(); foreach ($this->getEditors() as $editor) { - $editors[]=$this->formatAuthor($editor); + $editors[]=$this->addHomepageLink($this->formatAuthor($editor)); } if (COMMA_NAMES) {$sep = '; ';} else {$sep = ', ';} return implode($sep, $editors).', '.(count($editors)>1?'eds.':'ed.');