From bedadbee385d3ed75bee79bd5888097b75d83813 Mon Sep 17 00:00:00 2001 From: somini Date: Sat, 2 Apr 2022 20:18:19 +0100 Subject: [PATCH] Fixup deprecations on PHP 8 Fix #2448 --- bridges/FeedReducerBridge.php | 2 +- lib/BridgeCard.php | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bridges/FeedReducerBridge.php b/bridges/FeedReducerBridge.php index 1963b53b..c301d773 100644 --- a/bridges/FeedReducerBridge.php +++ b/bridges/FeedReducerBridge.php @@ -54,7 +54,7 @@ class FeedReducerBridge extends FeedExpander { } public function getName(){ - $trimmedPercentage = preg_replace('/[^0-9]/', '', $this->getInput('percentage')); + $trimmedPercentage = preg_replace('/[^0-9]/', '', $this->getInput('percentage') || ''); return parent::getName() . ' [' . $trimmedPercentage . '%]'; } } diff --git a/lib/BridgeCard.php b/lib/BridgeCard.php index e58cddb1..68d30372 100644 --- a/lib/BridgeCard.php +++ b/lib/BridgeCard.php @@ -88,7 +88,7 @@ This bridge is not fetching its content through a secure connection'; $form .= '' . PHP_EOL; @@ -103,7 +103,7 @@ This bridge is not fetching its content through a secure connection'; } if(isset($inputEntry['title'])) - $form .= 'i'; + $form .= 'i'; else $form .= ''; } @@ -153,9 +153,9 @@ This bridge is not fetching its content through a secure connection'; . ' id="' . $id . '" type="text" value="' - . filter_var($entry['defaultValue'], FILTER_SANITIZE_STRING) + . filter_var($entry['defaultValue'], FILTER_SANITIZE_FULL_SPECIAL_CHARS) . '" placeholder="' - . filter_var($entry['exampleValue'], FILTER_SANITIZE_STRING) + . filter_var($entry['exampleValue'], FILTER_SANITIZE_FULL_SPECIAL_CHARS) . '" name="' . $name . '" />'