From: Stéphane Jacob Date: Thu, 4 Nov 2010 11:33:48 +0000 (+0100) Subject: Prevents error when displaying site errors. X-Git-Tag: core/1.1.2~30 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=2db8aebd5280f6bf23fd9cedc0e8a969e1daf770;p=platal.git Prevents error when displaying site errors. Signed-off-by: Stéphane Jacob --- diff --git a/classes/plerrorreport.php b/classes/plerrorreport.php index 520acf0..194cd1b 100644 --- a/classes/plerrorreport.php +++ b/classes/plerrorreport.php @@ -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()