Revision: 2542
          https://sourceforge.net/p/mrbs/code/2542/
Author:   cimorrison
Date:     2012-10-30 11:50:56 +0000 (Tue, 30 Oct 2012)
Log Message:
-----------
Prevented E_USER_NOTICE errors being reported during normal MRBS operation 
(E_NOTICE errors are already ignored)

Modified Paths:
--------------
    mrbs/trunk/web/internalconfig.inc.php

Modified: mrbs/trunk/web/internalconfig.inc.php
===================================================================
--- mrbs/trunk/web/internalconfig.inc.php       2012-10-30 10:56:16 UTC (rev 
2541)
+++ mrbs/trunk/web/internalconfig.inc.php       2012-10-30 11:50:56 UTC (rev 
2542)
@@ -375,7 +375,7 @@
 }
 
 // Make sure notice errors are not reported, they can break mrbs code:
-$error_level = E_ALL ^ E_NOTICE;
+$error_level = E_ALL ^ E_NOTICE ^ E_USER_NOTICE;
 if (defined("E_DEPRECATED"))
 {
   $error_level = $error_level ^ E_DEPRECATED;
------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_sfd2d_oct
_______________________________________________
Mrbs-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mrbs-commits

Reply via email to