summaryrefslogtreecommitdiff
path: root/extlib/php-gettext/streams.php
diff options
context:
space:
mode:
Diffstat (limited to 'extlib/php-gettext/streams.php')
-rw-r--r--extlib/php-gettext/streams.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/extlib/php-gettext/streams.php b/extlib/php-gettext/streams.php
index d57aac649..3eafa7482 100644
--- a/extlib/php-gettext/streams.php
+++ b/extlib/php-gettext/streams.php
@@ -108,6 +108,7 @@ class FileReader {
// 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
+ $data = '';
while ($bytes > 0) {
$chunk = fread($this->_fd, $bytes);
$data .= $chunk;