From c2217f2d4bec50d90411f2c8625f7f02ea0618b6 Mon Sep 17 00:00:00 2001 From: Conrad Sachweh Date: Thu, 9 Jan 2020 10:41:25 +0100 Subject: [PATCH] fixed gettext library deprecated constructors https://www.php.net/manual/en/language.oop5.decon.php was already done for parent three years ago 00b6b66827 --- lib/gettext/streams.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/gettext/streams.php b/lib/gettext/streams.php index 3cdc1584e..00cf6cc55 100644 --- a/lib/gettext/streams.php +++ b/lib/gettext/streams.php @@ -49,7 +49,7 @@ class StringReader { var $_pos; var $_str; - function StringReader($str='') { + function __construct($str='') { $this->_str = $str; $this->_pos = 0; } @@ -86,7 +86,7 @@ class FileReader { var $_fd; var $_length; - function FileReader($filename) { + function __construct($filename) { if (file_exists($filename)) { $this->_length=filesize($filename); @@ -143,7 +143,7 @@ class FileReader { // Preloads entire file in memory first, then creates a StringReader // over it (it assumes knowledge of StringReader internals) class CachedFileReader extends StringReader { - function CachedFileReader($filename) { + function __construct($filename) { if (file_exists($filename)) { $length=filesize($filename);