diff --git a/bibtexbrowser.php b/bibtexbrowser.php
index cd67626..e3b7ccc 100755
--- a/bibtexbrowser.php
+++ b/bibtexbrowser.php
@@ -15,6 +15,7 @@ bibtexbrowser is a PHP script that creates publication lists from Bibtex files.
* **(04/2007)**: bibtexbrowser is easy to install: just a single file.
=====Other features=====
+* **(10/2011)** if a bibtex entry contains a field gsid (like Google Scholar ID), bibtexbrowser includes a link [cites] to the cited-by page of Google Scholar (e.g. [[http://scholar.google.com/scholar?cites=15080874515065717592]])
* **(03/2011)** bibtexbrowser includes a hide/show mechanism for bibtex entries (in Javascript, see configuration variable BIBTEXBROWSER_USE_PROGRESSIVE_ENHANCEMENT)
* **(10/2010)** bibtexbrowser now supports cross-references (Bibtex crossref)
* **(09/2010)** bibtexbrowser now supports multiple bibtex files (''bibtexbrowser.php?bib=file1.bib;file2.bib'')
@@ -1257,6 +1258,12 @@ class BibEntry {
if ($this->hasField('doi')) {
echo ' [doi]';
}
+
+ // Google Scholar ID
+ if ($this->hasField('gsid')) {
+ echo ' [cites]';
+ }
+
echo "\n";