diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-04 21:11:12 -0500 |
commit | a7f3e3bec50762f2083f70672a0ba3db533fc8bb (patch) | |
tree | c8e9961cb610042acf32e88096abc5fcb3eac4dd /app/check_setup.php | |
parent | 38082096909424c23032224365c90aa5189eb6f0 (diff) |
PHPdoc cleanup
Diffstat (limited to 'app/check_setup.php')
-rw-r--r-- | app/check_setup.php | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/app/check_setup.php b/app/check_setup.php index eec63ed8..af830de7 100644 --- a/app/check_setup.php +++ b/app/check_setup.php @@ -12,11 +12,6 @@ if (version_compare(PHP_VERSION, '5.4.0', '<')) { if (! ini_get('short_open_tag')) { throw new Exception('This software require to have short tags enabled if you have PHP < 5.4 ("short_open_tag = On")'); } - - // Magic quotes are deprecated since PHP 5.4 - if (get_magic_quotes_gpc()) { - throw new Exception('This software require to have "Magic quotes" disabled, it\'s deprecated since PHP 5.4 ("magic_quotes_gpc = Off")'); - } } // Check data folder if sqlite |