diff --git a/bibtexbrowser.php b/bibtexbrowser.php index fd780c5..9a8cbe5 100755 --- a/bibtexbrowser.php +++ b/bibtexbrowser.php @@ -777,9 +777,9 @@ class XMLPrettyPrinter extends ParserDelegate { /** represents @string{k=v} */ class StringEntry { - private string $name; - private string $value; - private string $filename; + public $filename; + public $name; + public $value; function __construct($k, $v, $filename) { $this->name=$k; @@ -3372,6 +3372,9 @@ usage: */ class AcademicDisplay { + public $db; + public $entries; + public $title; function getTitle() { return $this->title; } function setTitle($title) { $this->title = $title; return $this; }