phpwind让会员注册时使用论坛默认头像
1、修改 register.htm
找到下面代码
<select name='regicon' onChange="showimage('$imgpath',this.options[this.selectedIndex].value)">
<option value=' '>不使用</option>
修改为
<select name='regicon' onChange="showimage('$imgpath',this.options[this.selectedIndex].value)">
<option value='none.gif'>默认头像</option>
<option value=''>不使用</option>
2、修改 profile.htm
找到下面代码
<tr><td width=22% valign=middle>论坛提供头像:
<select name='proicon' onChange="showimage('$imgpath',this.options[this.selectedIndex].value)">
<option value=' '>不使用</option>
修改为
<tr><td width=22% valign=middle>论坛提供头像:
<select name='proicon' onChange="showimage('$imgpath',this.options[this.selectedIndex].value)">
<option value='none.gif'>默认头像</option>
<option value=' '>不使用</option>