Ver código fonte

Fix safe_ascii (#5311)

Fix https://github.com/FreshRSS/FreshRSS/issues/5310
Alexandre Alapetite 3 anos atrás
pai
commit
687d0b40a8
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      lib/lib_rss.php

+ 2 - 2
lib/lib_rss.php

@@ -132,8 +132,8 @@ function checkUrl(string $url, bool $fixScheme = true) {
 	}
 }
 
-function safe_ascii(string $text): string {
-	return filter_var($text, FILTER_DEFAULT, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH) ?: '';
+function safe_ascii(?string $text): string {
+	return $text === null ? '' : (filter_var($text, FILTER_DEFAULT, FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH) ?: '');
 }
 
 if (function_exists('mb_convert_encoding')) {