From f1247efd3443e40424e37ffd3ed5cf6bfbe1585b Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Mon, 14 Mar 2016 11:59:42 +0900 Subject: [PATCH] Fix class declarations old class declarations for constructors replaced with correct "__construct" part. --- www/libs/streams.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/www/libs/streams.php b/www/libs/streams.php index 3cdc1584..00cf6cc5 100644 --- a/www/libs/streams.php +++ b/www/libs/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);