From 988a5a3ec80fccb783d330d9be26496f09b7326e Mon Sep 17 00:00:00 2001 From: Martin Monperrus Date: Tue, 2 Feb 2016 21:20:05 +0100 Subject: [PATCH] fixes a bug in RSS display --- bibtexbrowser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bibtexbrowser.php b/bibtexbrowser.php index cf9d6bb..9262b28 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -4094,7 +4094,7 @@ class RSSDisplay { // final test with encoding: if (function_exists('mb_check_encoding')) { // (PHP 4 >= 4.4.3, PHP 5 >= 5.1.3) - if (!mb_check_encoding($desc,OUTPUT_ENCODING,BIBTEX_INPUT_ENCODING)) { + if (!mb_check_encoding($desc,OUTPUT_ENCODING)) { return 'encoding error: please check the content of OUTPUT_ENCODING'; } }