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:
with:
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;
Code:
width:<actinic:block php="true">echo (<actinic:variable name="MaxNumDropColumns" selectable="false" /> * (<actinic:variable name="DropColumnWidth" selectable="false" /> + 12));</actinic:block>px;
Comment