Log in

View Full Version : Deleting posts from threads...


AsedaH
11-17-2002, 08:04 PM
When you go to delete a thread and go to the option to selectively delete individual posts, the default option is "YES".

How can i modify this so the default option is "NO"?

thanks

TECK
11-17-2002, 09:04 PM
check the template and switch the "checked" value to the No input.

AsedaH
11-17-2002, 10:16 PM
which template?

AsedaH
11-19-2002, 10:41 PM
anyone know which template he was referring to?

Bitsys
11-19-2002, 10:56 PM
He was referring to threads_deletepostsbit

find:
<input type="radio" name="deletepost[$post[postid]]" value="yes" checked> Yes<br>
<input type="radio" name="deletepost[$post[postid]]" value="no"> No</smallfont></td>

change to:
<input type="radio" name="deletepost[$post[postid]]" value="yes"> Yes<br>
<input type="radio" name="deletepost[$post[postid]]" value="no" checked> No</smallfont></td>

The "checked" option is now associated with the "no" radio button.