Hi!
I have a warning information:
"Strict Standards: Only variables should be assigned by reference in /mywebseite.com/templates/vina_vanesa/html/com_jshopping/product/product_default.php on line 368"
This is:
<div id="product-details-tab">
<ul class="nav nav-tabs">
367. <li class="active"><a href="#details"><?php echo JText::_('VINA_FULL_DESCRIPTION');?></a></li>
368. <li><a href="#comments"><?php echo JText::_('VINA_REVIEW');?></a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="details">
<div class="box-content">
<?php print $this->product->description; ?>
</div>
</div>
<div class="tab-pane" id="comments">
<div class="box-content">
<?php
print $this->_tmp_product_html_before_review;
include(dirname(__FILE__)."/review.php");
?>
</div>
</div>
</div>
</div>
What is bad?