summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorConrad Sachweh <[email protected]>2020-01-09 10:41:25 +0100
committerConrad Sachweh <[email protected]>2020-01-09 10:45:09 +0100
commitc2217f2d4bec50d90411f2c8625f7f02ea0618b6 (patch)
tree76b7b343c3107b9f4e374e5d353f9f876afec3d0 /lib
parent7e2fd9bdce4a0ff05e7c76aee52e30c26d5b2093 (diff)
fixed gettext library deprecated constructors
https://www.php.net/manual/en/language.oop5.decon.php was already done for parent three years ago 00b6b66827
Diffstat (limited to 'lib')
-rw-r--r--lib/gettext/streams.php6
1 files 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);