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_utils.php | |
parent | 976ba376a94db6ac0891bc02437cea9f9cc08093 (diff) |
Canonize boolean ini_get() results (#1489189)
Diffstat (limited to 'program/lib/Roundcube/rcube_utils.php')
-rw-r--r-- | program/lib/Roundcube/rcube_utils.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/program/lib/Roundcube/rcube_utils.php b/program/lib/Roundcube/rcube_utils.php index 29baa82f3..6c3bd2143 100644 --- a/program/lib/Roundcube/rcube_utils.php +++ b/program/lib/Roundcube/rcube_utils.php @@ -360,12 +360,8 @@ class rcube_utils return $value; } - // strip single quotes if magic_quotes_sybase is enabled - if (ini_get('magic_quotes_sybase')) { - $value = str_replace("''", "'", $value); - } // strip slashes if magic_quotes enabled - else if (get_magic_quotes_gpc() || get_magic_quotes_runtime()) { + if (get_magic_quotes_gpc() || get_magic_quotes_runtime()) { $value = stripslashes($value); } |