模板的BUG~
注册时
<tr class="list">
<th class="formlabel">每页主题数:</th>
<td class="formbody">
<select name="tpp" id="tpp">
<option value="0" selected="selected">默认</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="25">25</option>
</select>
</td>
</tr>
</tbody>
<tbody>
<tr class="list">
<th class="formlabel">每页帖子数:</th>
<td class="formbody">
<select name="ppp" id="ppp">
<option value="0" selected="selected">默认</option>
<option value="10">10</option>
<option value="15">15</option>
<option value="20">20</option>
</select>
</td>
</tr>
用户中心论坛设置中
<label for="tpp" class="labellong2" style="line-height:180%;">每页主题数:</label>
<input type="radio" value="0" name="tpp"
<%if {user.tpp}==0%>
checked="checked"
<%/if%>/>默认
<input type="radio" value="15" name="tpp"
<%if {user.tpp}==15%>
checked="checked"
<%/if%>/>15
<input type="radio" value="20" name="tpp"
<%if {user.tpp}==20%>
checked="checked"
<%/if%>/>20
<input type="radio" value="25" name="tpp"
<%if {user.tpp}==25%>
checked="checked"
<%/if%>/>25
<br />
<div class="compartline"> </div>
<label for="ppp" class="labellong2" style="line-height:180%;">每页帖子数:</label>
<input type="radio" value="0" name="ppp"
<%if {user.ppp}==0%>
checked="checked"
<%/if%>/>默认
<input type="radio" value="15" name="ppp"
<%if {user.ppp}==15%>
checked="checked"
<%/if%>/>10
<input type="radio" value="20" name="ppp"
<%if {user.ppp}==20%>
checked="checked"
<%/if%>/>15
<input type="radio" value="25" name="ppp"
<%if {user.ppp}==25%>
checked="checked"
<%/if%>/>20
两处设置数量不一致~
用户中心中判断跟显示的数量也不一致~~~