We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30b34c7 commit 6ae349bCopy full SHA for 6ae349b
install.php
@@ -47,7 +47,7 @@ class Installer {
47
* Minimum required PHP version to install ProcessWire
48
*
49
*/
50
- const MIN_REQUIRED_PHP_VERSION = '5.3.8';
+ const MIN_REQUIRED_PHP_VERSION = '7.1.0';
51
52
/**
53
* Test mode for installer development, non destructive
@@ -1835,10 +1835,6 @@ public function post($key, $sanitizer = '') {
1835
1836
if($value === null && empty($sanitizer)) return null;
1837
1838
- if(version_compare(PHP_VERSION, "5.4.0", "<") && function_exists('get_magic_quotes_gpc')) {
1839
- if(get_magic_quotes_gpc()) $value = stripslashes($value);
1840
- }
1841
-
1842
switch($sanitizer) {
1843
case 'intSigned':
1844
$value = (int) $value;
0 commit comments