diff --git a/bibtexbrowser.php b/bibtexbrowser.php index bd9adf0..e4a1e95 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -1230,7 +1230,7 @@ class BibEntry { * Returns a compacted string form of author names by throwing away * all author names except for the first one and appending ", et al." */ - function getCompactedAuthors($author){ + function getCompactedAuthors(){ $authors = $this->getRawAuthors(); $etal = count($authors) > 1 ? ', et al.' : ''; return $this->formatAuthor($authors[0]) . $etal;