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
. '" />'