X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=classes%2Fplmailer.php;h=2106d5024b91098f057d2d2c9523ea74f2fcb4c9;hb=3efb60522538b0b1fbd1b93ba3150c7c5d7eb039;hp=6b6fd0d8904e7271ebc816c6c321f383b131b5bf;hpb=a99ff1fc9dfc6faae70b71ad440bc21ebcbbbd4c;p=platal.git diff --git a/classes/plmailer.php b/classes/plmailer.php index 6b6fd0d..2106d50 100644 --- a/classes/plmailer.php +++ b/classes/plmailer.php @@ -265,7 +265,10 @@ class PlMailer extends Mail_Mime { private function processPage($with_html = true) { if (!is_null($this->page)) { - $level = error_reporting(0); + global $globals; + if (!($globals->debug & DEBUG_SMARTY)) { + $level = error_reporting(0); + } $this->page->run('head'); // process page headers $this->wiki = trim($this->page->run('wiki')); // get wiki if (!$this->wiki) { @@ -277,7 +280,9 @@ class PlMailer extends Mail_Mime { } } } - error_reporting($level); + if (!($globals->debug & DEBUG_SMARTY)) { + error_reporting($level); + } } if ($this->wiki) { $this->setTxtBody(MiniWiki::WikiToText($this->wiki, false, 0, 78));