Announcement

Collapse
No announcement yet.

Bug in Actinic Mega Menu stylesheet code.

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Bug in Actinic Mega Menu stylesheet code.

    Versions affected. All V11 including 11.0.3Beta

    Bug: Use "Fresh" Theme, select Design Tab and then use the Select Page Type drop down to choose the Actinic Stylesheet (or if V11.0.3, Current Stylesheet). A PHP error appears.

    Cause: Variables are used in PHP calculation without selectable="false" applied.

    Fix: Replace stylesheet code:
    Code:
    	width:<actinic:block php="true">echo (<actinic:variable name="MaxNumDropColumns" /> * (<actinic:variable name="DropColumnWidth" /> + 12));</actinic:block>px;
    with:
    Code:
    	width:<actinic:block php="true">echo (<actinic:variable name="MaxNumDropColumns" selectable="false" /> * (<actinic:variable name="DropColumnWidth" selectable="false" /> + 12));</actinic:block>px;
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    #2
    Hi Norman

    Thank you for pointing this out. I have raised an issue for this for fixing in a future release.

    Regards
    Krithika Chandrasekar
    SellerDeck

    sigpic

    E-commerce software by SellerDeck

    Comment

    Working...
    X