diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-03-27 15:33:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-03-27 15:33:42 -0300 |
commit | 7382b3a86ba9ad9688e9da70c293e2a17d9c8724 (patch) | |
tree | 33bb147f6ca2e359f811b034df7586ea850b666e /manifests | |
parent | 4f250cde2ab2bde6b2dd75aa362783b5489f4dfc (diff) | |
download | puppet-php-7382b3a86ba9ad9688e9da70c293e2a17d9c8724.tar.gz puppet-php-7382b3a86ba9ad9688e9da70c293e2a17d9c8724.tar.bz2 |
Removes E_STRICT from error_reporting
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/defaults.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/defaults.pp b/manifests/defaults.pp index babdb55..a36c9a9 100644 --- a/manifests/defaults.pp +++ b/manifests/defaults.pp @@ -1,6 +1,6 @@ class php::defaults { php::config { - 'error_reporting' : value => 'E_ALL & ~E_NOTICE'; + 'error_reporting' : value => 'E_ALL & ~E_NOTICE & ~E_STRICT'; 'post_max_size' : value => '100M'; 'upload_max_filesize' : value => '100M'; } |