From 1a8d0fb8ab9fe32350c1395bd5a9d1b3166980fa Mon Sep 17 00:00:00 2001 From: Zack Puhl <31320277+NotsoanoNimus@users.noreply.github.com> Date: Wed, 31 Jul 2024 11:51:05 -0400 Subject: [PATCH] [EBayBridge] fix undefined vars errors (#4175) --- bridges/EBayBridge.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bridges/EBayBridge.php b/bridges/EBayBridge.php index 11b90bf8..463f73d6 100644 --- a/bridges/EBayBridge.php +++ b/bridges/EBayBridge.php @@ -137,6 +137,8 @@ class EBayBridge extends BridgeAbstract . trim($additionalPrice ?? '') . '; ' . trim($discount ?? '') . ')'; + } else { + $discountLine = ''; } // Prepend the time-left info with a comma if the right details were found. @@ -163,6 +165,8 @@ class EBayBridge extends BridgeAbstract // Include the original search link, if specified. if ($this->getInput('includesSearchLink')) { $searchLink = '
'; + } else { + $searchLink = ''; } // Build the final item's content to display and add the item onto the list.