diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-06-20 15:08:10 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-06-20 15:08:10 +0200 |
commit | 39b905b7a8abafe57f5429952db390a97ffa047f (patch) | |
tree | 6dbfb024d6441f873e4736c3d3cdc7d430c027eb /program/lib/Roundcube/rcube.php | |
parent | 976ba376a94db6ac0891bc02437cea9f9cc08093 (diff) |
Canonize boolean ini_get() results (#1489189)
Diffstat (limited to 'program/lib/Roundcube/rcube.php')
-rw-r--r-- | program/lib/Roundcube/rcube.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php index 21b49f49b..6543a399c 100644 --- a/program/lib/Roundcube/rcube.php +++ b/program/lib/Roundcube/rcube.php @@ -1487,7 +1487,7 @@ class rcube $subject = str_replace("\r\n", $delim, $subject); } - if (ini_get('safe_mode')) + if (filter_var(ini_get('safe_mode'), FILTER_VALIDATE_BOOLEAN)) $sent = mail($to, $subject, $msg_body, $header_str); else $sent = mail($to, $subject, $msg_body, $header_str, "-f$from"); |