
Originally Posted by
pungky
What theme do you use?
Please check using the default theme (komet).
.
My design is (if I remember right) is based on the portal_dir.
I have discovered what caused the issue. I hope my explanation makes sense.
I do not want to give ability to submit to multiple categories so in add_form.html I commented out as in: Code:
<div>
<label><%t%>Category<%/t%></label>
<label id="cat_div"><%$category%></label>
<br style="clear:both;">
</div>
<!-- <div>
<label><%t%>Additional Category 1<%/t%></label>
<label id="add_cat1_div"><%$add_cat1%></label>
<br style="clear:both;">
</div> -->
<div>
<label><%t%>Additional Category 2<%/t%></label>
<label id="add_cat2_div"><%$add_cat2%></label>
<br style="clear:both;">
</div> --> I discovered that this is what causes the problem because if I do this: Code:
<!-- <div>
<label><%t%>Category<%/t%></label>
<label id="cat_div"><%$category%></label>
<br style="clear:both;">
</div>
<div>
<label><%t%>Additional Category 1<%/t%></label>
<label id="add_cat1_div"><%$add_cat1%></label>
<br style="clear:both;">
</div> -->
<div>
<label><%t%>Additional Category 2<%/t%></label>
<label id="add_cat2_div"><%$add_cat2%></label>
<br style="clear:both;">
</div> or do nothing things work as they should.
Not sure if this is really a bug or not but I think it should be documented somewhere.
BTW, I get same results with the default theme.