diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-11-09 14:26:45 +0100 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-11-09 14:30:44 +0100 |
| commit | ed74c9c4870885cc3f1e04a2f68efb600012f529 (patch) | |
| tree | 12ab5bd3322828aa436a4f23cf38f2cac286eb6c | |
| parent | 02df59f1fe7232789c61a7880c11f00f57f2550a (diff) | |
| download | forums-ed74c9c4870885cc3f1e04a2f68efb600012f529.tar forums-ed74c9c4870885cc3f1e04a2f68efb600012f529.tar.gz forums-ed74c9c4870885cc3f1e04a2f68efb600012f529.tar.bz2 forums-ed74c9c4870885cc3f1e04a2f68efb600012f529.tar.xz forums-ed74c9c4870885cc3f1e04a2f68efb600012f529.zip | |
[ticket/11178] Do not set error_reporting to E_ALL in database_updater.php
Take whatever startup.php sets instead.
This especially takes care of E_STRICT messages that are generated because of
PHP4 compatibility.
PHPBB3-11178
| -rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 099ab6aeb5..b6299dbf7c 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -60,8 +60,6 @@ $updates_to_version = UPDATES_TO_VERSION; $debug_from_version = DEBUG_FROM_VERSION; $oldest_from_version = OLDEST_FROM_VERSION; -error_reporting(E_ALL); - @set_time_limit(0); // Include essential scripts |
