
Originally Posted by
ericpeng
Is this a bug?
In admin panel - product description :
<!--%Product Description%-->
Line1
<!--%Extra Specs%-->
Line2
The 'Extra Specs' tab won't work.(left hand side bottom - error on page.)
But if I add <!--#AdditionalImages#--> to the bottom, then it works fine.
FIXED:
FIND (TWICE!!) :
Code:
if (($chkTabStart && $chkTabEnd) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased)) {
REPLACE WITH (TWICE!!) :
Code:
if (($chkTabStart >= 0 && $chkTabEnd >= 0) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased) {
I was using absolute string value check.. but if the tags weren't used, it sets the value of the chktabstart and end to -1 which is infact a real value...
Thanks eric :)
Bookmarks