Created
February 19, 2014 13:27
-
-
Save denyskoch/9091961 to your computer and use it in GitHub Desktop.
Strange behavior of "{var}" != {var}
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{namespace v=Tx_Vhs_ViewHelpers} | |
{namespace flux=Tx_Flux_ViewHelpers} | |
<f:layout name="Page" /> | |
<f:section name="Configuration"> | |
<flux:flexform id="defaultpage" icon="ext_icon.gif"> | |
<flux:flexform.sheet name="logos"> | |
<flux:flexform.section name="logos"> | |
<flux:flexform.object name="logo"> | |
<flux:flexform.field.input name="alt" required="true" /> | |
<flux:flexform.field.file name="src" allowed="png,svg" required="true" /> | |
</flux:flexform.object> | |
</flux:flexform.section> | |
</flux:flexform.sheet> | |
<flux:flexform.grid> | |
<flux:flexform.grid.row> | |
<flux:flexform.grid.column colPos="0" name="content" /> | |
</flux:flexform.grid.row> | |
</flux:flexform.grid> | |
</flux:flexform> | |
</f:section> | |
<f:section name="Content"> | |
<f:for each="{logos}" as="logoObj"> | |
"{logoObj.logo.src}" != {logoObj.logo.src} | |
</f:for> | |
</f:section> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment