mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
Supress deprecation messages during runtime
This commit is contained in:
parent
8aca42c882
commit
e6b4edd160
3 changed files with 6 additions and 1 deletions
|
@ -18,6 +18,8 @@ Bug fixes:
|
|||
Changes:
|
||||
- Administrator account requirements for Nextcloud News functionality are
|
||||
now enforced
|
||||
- E_DEPRECATED is now suppressed for compatibility with PHP 8 until affected
|
||||
dependencies can be replaced
|
||||
|
||||
Version 0.8.5 (2020-10-27)
|
||||
==========================
|
||||
|
|
|
@ -13,6 +13,8 @@ require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|
|||
ignore_user_abort(true);
|
||||
ini_set("memory_limit", "-1");
|
||||
ini_set("max_execution_time", "0");
|
||||
// FIXME: This is required by a dependency of Picofeed
|
||||
error_reporting(\E_ALL & ~\E_DEPRECATED);
|
||||
|
||||
if (\PHP_SAPI === "cli") {
|
||||
// initialize the CLI; this automatically handles --help and --version else
|
||||
|
|
|
@ -12,7 +12,8 @@ const DOCROOT = BASE."tests".DIRECTORY_SEPARATOR."docroot".DIRECTORY_SEPARATOR;
|
|||
ini_set("memory_limit", "-1");
|
||||
ini_set("zend.assertions", "1");
|
||||
ini_set("assert.exception", "true");
|
||||
error_reporting(\E_ALL ^ \E_DEPRECATED);
|
||||
// FIXME: This is required by a dependency of Picofeed
|
||||
error_reporting(\E_ALL & ~\E_DEPRECATED);
|
||||
require_once BASE."vendor".DIRECTORY_SEPARATOR."autoload.php";
|
||||
|
||||
if (function_exists("xdebug_set_filter")) {
|
||||
|
|
Loading…
Reference in a new issue