Warning .. I have not tested this.
Edit /admin/validate.php
Locate line #46 after ..
| Code: |
$Email=mysql_escape_string($_POST['Email']);
|
add ...
| Code: |
$featured=mysql_escape_string($_POST['featured']);
|
Edit line # 63 change from
to ...
Edit line # 77 change from
to ...
| Code: |
'$Hint', '$featured'
|
Down around line 177, locate this block of code
| Code: |
value="<?=$rows[Email]?>" size="35"></td>
</tr>
<tr>
<td colspan="2" align="center"><input class="button" type="submit"
name="validate_site" value=" Validate Site "></td>
|
Change to
| Code: |
value="<?=$rows[Email]?>" size="35"></td>
</tr>
<tr><td class="text">Featured site ?</td><td>
NO :<input type=radio name=featured value=0 checked>
YES :<input type=radio name=featured value=1>
</td></tr>
<tr>
<td colspan="2" align="center"><input class="button" type="submit"
name="validate_site" value=" Validate Site "></td>
|
Hopefully I didn't miss anything. Let me know