fixed gettext library deprecated constructors

https://www.php.net/manual/en/language.oop5.decon.php

was already done for parent three years ago 00b6b66827
This commit is contained in:
Conrad Sachweh 2020-01-09 10:41:25 +01:00
parent 7e2fd9bdce
commit c2217f2d4b
1 changed files with 3 additions and 3 deletions

View File

@ -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);