|
From: Reini U. <ru...@x-...> - 2009-04-15 11:09:41
|
2009/4/15 Sabri LABBENE <sab...@st...>: > I'm using a 1.3.12 version of PhpWiki. > Is it possible to turn off error reporting of PhpWiki (at least for Notices)? > Is it something we can tune from PhpWiki config ? This is a php setting. in php.ini there's a key for error_reporting. default is: error_reporting = E_ALL & ~E_NOTICE To turn off phpwiki notice for phpwiki only do: error_reporting(E_ALL & (~E_NOTICE | ~E_USER_NOTICE)); for example in index.php. |