aboutsummaryrefslogtreecommitdiff
path: root/lib/lib_rss.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/lib_rss.php')
-rw-r--r--lib/lib_rss.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/lib_rss.php b/lib/lib_rss.php
index e1618a2ef..3ddda1515 100644
--- a/lib/lib_rss.php
+++ b/lib/lib_rss.php
@@ -1,10 +1,6 @@
<?php
declare(strict_types=1);
-if (version_compare(PHP_VERSION, FRESHRSS_MIN_PHP_VERSION, '<')) {
- die(sprintf('FreshRSS error: FreshRSS requires PHP %s+!', FRESHRSS_MIN_PHP_VERSION));
-}
-
if (!function_exists('mb_strcut')) {
function mb_strcut(string $str, int $start, ?int $length = null, string $encoding = 'UTF-8'): string {
return substr($str, $start, $length) ?: '';