forked from GNUsocial/gnu-social
Tweak to php-gettext stream reader; initialize local variable before appending data to it to avoid triggering an E_NOTICE message.
This commit is contained in:
parent
5c21a371d6
commit
8bca90b8d2
@ -108,6 +108,7 @@ class FileReader {
|
|||||||
|
|
||||||
// PHP 5.1.1 does not read more than 8192 bytes in one fread()
|
// PHP 5.1.1 does not read more than 8192 bytes in one fread()
|
||||||
// the discussions at PHP Bugs suggest it's the intended behaviour
|
// the discussions at PHP Bugs suggest it's the intended behaviour
|
||||||
|
$data = '';
|
||||||
while ($bytes > 0) {
|
while ($bytes > 0) {
|
||||||
$chunk = fread($this->_fd, $bytes);
|
$chunk = fread($this->_fd, $bytes);
|
||||||
$data .= $chunk;
|
$data .= $chunk;
|
||||||
|
Loading…
Reference in New Issue
Block a user