Visited /components/com_virtuemart/helpers/cart.php
At the bottom of the file under the function prepareAjaxData find:
$data->cart_show
The JRoute function called here is missing the 3rd variable $xhtml.
So after adding it will look like this:
$data->cart_show = '<a style ="float:right;" href="'.JRoute::_("index.php?option=com_virtuemart&view=cart".$taskRoute,$this->useXHTML,$this->useSSL).'" rel="nofollow" >'.$linkName.'</a>';
$data->cart_show = '<a style ="float:right;" href="'.JRoute::_("index.php?option=com_virtuemart&view=cart".$taskRoute,$this->useXHTML,$this->useSSL).'" rel="nofollow" >'.$linkName.'</a>';