Order ID: 12335
Hi,
I have problem with com_contact. The problem is when sef is enable and I have two or tree contacts and set menu item with dropdown menu to choice contact all links to contact except first are broken.
difference is here:
With sef disable:
code is
<form action="/index.php?option=com_contact&view=contact&id=2&Itemid=174" method="post" name="selectForm" id="selectForm">
Select Contact:
<br />
<select name="contact_id" id="contact_id" class="inputbox" onchange="this.form.submit()"><option value="2" selected="selected">SALES</option><option value="4" >Support</option></select>
with sef enable
code is:
<form action="/" method="post" name="selectForm" id="selectForm">
Select Contact:
<br />
<select name="contact_id" id="contact_id" class="inputbox" onchange="this.form.submit()"><option value="2" selected="selected">SALES</option><option value="4" >Support</option></select>
problem is here -> action="/" (when sef is enable have nothing)
How I can resolf this problem