Prevents error when displaying site errors.
authorStéphane Jacob <sj@m4x.org>
Thu, 4 Nov 2010 11:33:48 +0000 (12:33 +0100)
committerStéphane Jacob <sj@m4x.org>
Thu, 4 Nov 2010 11:33:48 +0000 (12:33 +0100)
Signed-off-by: Stéphane Jacob <sj@m4x.org>
classes/plerrorreport.php

index 520acf0..194cd1b 100644 (file)
@@ -74,7 +74,12 @@ class PlErrorReportIterator implements PlIterator
 
     public function __construct()
     {
-        $this->file = fopen(Platal::globals()->spoolroot . '/spool/tmp/site_errors', 'r');
+        $file = Platal::globals()->spoolroot . '/spool/tmp/site_errors';
+        if (file_exists($file)) {
+            $this->file = fopen($file, 'r');
+        } else {
+            $this->file = null;
+        }
     }
 
     public function next()