disappearing img tag

I am working on a site with cscart v 2.2.1 multivendor 3 installed, using a modified version of the dark_whiteness skin so that it is visually to the other parts of the website.



In skins/dark_whiteness/customer/top.tpl I have included code similar to:


```php



{$manifest.Customer_logo.alt}









{include file="top_quick_links.tpl"}

{include file="top_menu.tpl"}
```

On every page except for the view cart page (http://website/cscart/index.php?dispatch=checkout.cart), this works fine. On the view cart page, all of the tags within the header-helper-container div have been removed:

```php












{include file="top_quick_links.tpl"}

{include file="top_menu.tpl"}
```

I can make changes to the images and see those changes on every page (except for the view cart page of course). I can make changes to the links or add/remove text and see those changes on every page.

What I cannot discover, is why the images are being removed from the source on the view cart page.

Any ideas?

Some more information… if I include the smary debug console after my social media links, the images are not removed from the view cart page:


```php





http://website”}”>{$manifest.Customer_logo.alt}



















{debug}

{include file=“top_quick_links.tpl”}

{include file=“top_menu.tpl”}

```