Happy New Year
[squirrelmail.git] / class / l10n / streams.class.php
index 9985d1298e91b121cc6038303bd7ad4cd10a022f..62794414582d2c8ea9270b4af037c225e9fee2d7 100644 (file)
@@ -1,4 +1,5 @@
 <?php
+
 /**
  * Copyright (c) 2003 Danilo Segan <danilo@kvota.net>.
  *
  *
  * You should have received a copy of the GNU General Public License
  * along with PHP-gettext; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ * MA  02110-1301, USA
  *
+ * @copyright 2004-2018 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
  * @package squirrelmail
  * @subpackage i18n
  */
@@ -58,7 +63,8 @@ class FileReader {
      * @return boolean false there is a problem with $filename
      */
     function FileReader($filename) {
-        if (file_exists($filename)) {
+        // disable stat warnings for unreadable directories
+        if (@file_exists($filename)) {
 
             $this->_length=filesize($filename);
             $this->_pos = 0;
@@ -120,4 +126,3 @@ class FileReader {
         fclose($this->_fd);
     }
 }
-?>
\ No newline at end of file