Open Power Template 2.x family
PLEASE PROVIDE THE TEMPLATES AND/OR PHP CODE IN THE TASK DESCRIPTION (Not URL-s to them). THAT ALLOWS US TO REPRODUCE THE PROBLEM! OTHERWISE WE ARE NOT ABLE TO HELP YOU!
Remember to hide all the security-related pieces of code from the task description, like passwords, server paths etc. for your own safety. Once we close the task, we cannot edit it anymore!
PLEASE PROVIDE THE TEMPLATES AND/OR PHP CODE IN THE TASK DESCRIPTION (Not URL-s to them). THAT ALLOWS US TO REPRODUCE THE PROBLEM! OTHERWISE WE ARE NOT ABLE TO HELP YOU!
Remember to hide all the security-related pieces of code from the task description, like passwords, server paths etc. for your own safety. Once we close the task, we cannot edit it anymore!
FS#122 - An issue with opt:attribute
Attached to Project:
Open Power Template
Opened by Damian Nowak (Nowaker) - Sunday, 13 September 2009, 13:53 GMT-7
Last edited by Zyx (Zyx) - Monday, 14 September 2009, 01:49 GMT-7
Opened by Damian Nowak (Nowaker) - Sunday, 13 September 2009, 13:53 GMT-7
Last edited by Zyx (Zyx) - Monday, 14 September 2009, 01:49 GMT-7
|
Details<opt:attribute name="class" value="lay_center_small" opt:if="$show.right" />x
<opt:attribute name="class" value="lay_center_big" opt:if="! $show.right" /> Shouldn't this product class="lay_center_small" or class="lay_center_big"? Now it omits one of them. |
This task depends upon
Closed by Zyx (Zyx)
Monday, 14 September 2009, 01:49 GMT-7
Reason for closing: Fixed
Additional comments about closing: Fixed in rev. 230
Monday, 14 September 2009, 01:49 GMT-7
Reason for closing: Fixed
Additional comments about closing: Fixed in rev. 230
~~~~
<opt:attribute str:name="class" value="lay_center_small" />
<opt:attribute str:name="class" value="lay_center_big" />
~~~~
However, here we are extra opf:if conditions that should be also taken into account. Currently, this lock is applicated and OPT simply overwrites the previous definition of class attribute. This could be done by introducing <opt:value> tag that could be put into <opt:attribute>...