Friday 26 May 2006 7:42:33 am
Hello Borge.
I did fix it. There is a bug on the template for the insertlink popup window in online editor (/extension/ezdhtml/design/standard/templates/ezdhtml/insertlink_gecko.tpl)
Around line 133 there is a form and some input tags that are incorrectly nested, also check out where the closing tag for the form is (around line 200). Also, the action atribute for the form is incorrect. This is the original code:
<input type="hidden" id="editorID" value="" />
<input type="hidden" id="browseActionName" value="{$browse_action_name}" />
<form method="post" action="insertlink">
<div class="onlineeditor">
<input id="isNew" name="isNew" type="hidden" value="{$is_new}"/>
<h1>
{section show=$is_new}
{"Insert link"|i18n("design/standard/ezdhtml")}
{section-else}
{"Link Properties"|i18n("design/standard/ezdhtml")}
{/section}
</h1>
I changed it for:
<div class="onlineeditor">
<form action={"ezdhtml/insertlink"|ezurl} method="post">
<input type="hidden" id="editorID" value="" />
<input type="hidden" id="browseActionName" value="{$browse_action_name}" />
<input id="isNew" name="isNew" type="hidden" value="{$is_new}"/>
<h1>
{section show=$is_new}
{"Insert link"|i18n("design/standard/ezdhtml")}
{section-else}
{"Link Properties"|i18n("design/standard/ezdhtml")}
{/section}
</h1>
|