Skip to content

Commit

Permalink
Hide ebay item if deleted on ebay #4787 Port K50 (#4823)
Browse files Browse the repository at this point in the history
  • Loading branch information
810 committed Oct 21, 2016
1 parent 0065c13 commit b3c26c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libraries/kunena/bbcode/bbcode.php
Expand Up @@ -2994,7 +2994,7 @@ public static function renderEbayLayout($ItemID)
{
$ebay = self::getEbayItemFromCache($ItemID);

if (is_object($ebay))
if (is_object($ebay) && $ebay->Ack == 'Success')
{
return (string) $layout
->set('content', $ItemID)
Expand Down

0 comments on commit b3c26c6

Please sign in to comment.