aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2017-03-27 15:33:42 -0300
committerSilvio Rhatto <rhatto@riseup.net>2017-03-27 15:33:42 -0300
commit7382b3a86ba9ad9688e9da70c293e2a17d9c8724 (patch)
tree33bb147f6ca2e359f811b034df7586ea850b666e
parent4f250cde2ab2bde6b2dd75aa362783b5489f4dfc (diff)
downloadpuppet-php-7382b3a86ba9ad9688e9da70c293e2a17d9c8724.tar.gz
puppet-php-7382b3a86ba9ad9688e9da70c293e2a17d9c8724.tar.bz2
Removes E_STRICT from error_reporting
-rw-r--r--manifests/defaults.pp2
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';
}