diff options
| author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 | 
|---|---|---|
| committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-05-10 08:59:41 +0000 | 
| commit | 2756e3f85818346a478725b6dd94a966e0d92c07 (patch) | |
| tree | efad4c6566773670dc5f9a8b733f2a3ed3fe4a57 /includes | |
| parent | e273c0d367da161651324eca1b7e4177c670c91f (diff) | |
| download | semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.gz semanticscuttle-2756e3f85818346a478725b6dd94a966e0d92c07.tar.bz2 | |
Bug fixes: correct minor bugs appearing with 'notice' level in PHP
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@122 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes')
| -rw-r--r-- | includes/php-gettext/streams.php | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/includes/php-gettext/streams.php b/includes/php-gettext/streams.php index d57aac6..4237de1 100644 --- a/includes/php-gettext/streams.php +++ b/includes/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; @@ -163,4 +164,4 @@ class CachedFileReader extends StringReader {  } -?>
\ No newline at end of file +?> | 
