Reply to thread

In the template admin:option_template_registrationDefaults, "Watch content on creation" and "Watch content on interaction" have the same <label for=""> and id="" attributes.


[CODE=html]        <dl class="inputLabelPair">

            <dt><label for="{$inputName}_dws">{{ phrase('watch_content_on_creation') }}</label></dt>

            <dd><xf:select name="{$inputName}[creation_watch_state]" value="{$option.option_value.creation_watch_state}" id="{$inputName}_dws">

                <xf:option value="watch_no_email">{{ phrase('yes') }}</xf:option>

                <xf:option value="watch_email">{{ phrase('yes_with_email') }}</xf:option>

                <xf:option>{{ phrase('no') }}</xf:option>

            </xf:select></dd>

        </dl>

        <dl class="inputLabelPair">

            <dt><label for="{$inputName}_dws">{{ phrase('watch_content_on_interaction') }}</label></dt>

            <dd><xf:select name="{$inputName}[interaction_watch_state]" value="{$option.option_value.interaction_watch_state}" id="{$inputName}_dws">

                <xf:option value="watch_no_email">{{ phrase('yes') }}</xf:option>

                <xf:option value="watch_email">{{ phrase('yes_with_email') }}</xf:option>

                <xf:option>{{ phrase('no') }}</xf:option>

            </xf:select></dd>

        </dl>[/CODE]


Back
Top Bottom