PluginProbe
HTML Forms – Simple WordPress Forms Plugin / 1.3.21
HTML Forms – Simple WordPress Forms Plugin v1.3.21
1.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.2.0 1.3.0 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 All 67 releases
← All changes | vendor/composer/platform_check.php +3 -2 trunk1.3.21 View file →
@@ -18,8 +18,9 @@
18 18 } elseif (!headers_sent()) {
19 19 echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
20 20 }
21 21 }
22 - throw new \RuntimeException(
23 - 'Composer detected issues in your platform: ' . implode(' ', $issues)
22 + trigger_error(
23 + 'Composer detected issues in your platform: ' . implode(' ', $issues),
24 + E_USER_ERROR
24 25 );
25 26 }