diff options
author | plegall <plg@piwigo.org> | 2005-10-18 21:37:08 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2005-10-18 21:37:08 +0000 |
commit | 0aa1bcc73ceb24d91d5483171af994a05d2e60b0 (patch) | |
tree | bf9e9dc2461479e692e32c24c358f0c7b1739247 /include | |
parent | 7a37fded516452ec62ffb60124408b1120a81088 (diff) |
- bug 159 and 166 fixed: parameter "options" for mail() function disabled by
default.
git-svn-id: http://piwigo.org/svn/trunk@901 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | include/config_default.inc.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/config_default.inc.php b/include/config_default.inc.php index 119aafde2..3b48dc72a 100644 --- a/include/config_default.inc.php +++ b/include/config_default.inc.php @@ -178,6 +178,10 @@ $conf['prefix_thumbnail'] = 'TN-'; // Administration>Identification>Users? $conf['users_page'] = 20; +// mail_options: only set it true if you have a send mail warning with +// "options" parameter missing on mail() function execution. +$conf['mail_options'] = false; + // +-----------------------------------------------------------------------+ // | metadata | // +-----------------------------------------------------------------------+ @@ -361,13 +365,13 @@ $conf['upload_maxheight_thumbnail'] = 100; $conf['upload_maxwidth_thumbnail'] = 150; // +-----------------------------------------------------------------------+ -// | history | +// | history | // +-----------------------------------------------------------------------+ // nb_logs_page : how many logs to display on a page $conf['nb_logs_page'] = 300; -// history__admin : history admin visits ? +// history_admin : history admin visits ? $conf['history_admin'] = false; ?> |