Hi Asteran,
thanks for the new version. It's getting pretty cool.
You have some Denglish (German/English mix) in it, did you realize that?

By the way, I tried to find a way to address a user in their language, as I am running a bi-langual website. In your code I changed this:
[:"green"]
$Sender = $user['U_Username'];
$To = $poster;
//Hack in Hack, additionally: Language!
If ($Sprache == "German") {
if ($Reason != "") {
$Message2 ="<br /><br />Anmerkung: <br><br> $Reason";
}
$Subject = "Dein Thread "$mSubject" wurde verschoben.";
$mess = "Dein Thread "$mSubject" wurde von "$boardin" in's "$boardm" Board verchoben. Der Thread kann jetzt
<a href="$config[phpurl]/showthreaded.php?Cat=$Cat&Board=$Keyword_q&Number=$number">hier</a> gefunden werden.$Message2";
} else {
if ($Reason != "") {
$Message2 ="<br /><br />Annotation: <br><br> $Reason";
}
$Subject = "Your thread "$mSubject" has been moved";
$mess = "Your thread "$mSubject" has been moved from "$boardin" to "$boardm". The thread can be found
<a href="$config[phpurl]/showthreaded.php?Cat=$Cat&Board=$Keyword_q&Number=$number">here</a>.$Message2";
}
// End Hack in Hack
$html -> send_message ($Sender,$To,$Subject,$mess);
[/]
How to I get the variable $Sprache?
On the admin part, I added a selection. So the admin, while moving the thread, decides in what language he wants to address the user with the "reason":
[:"green"]
echo "</br /></br />
<p><b>Automatic Info-Message to the user who started the thread: </b></p>
<p>
a) Choose language of the User: <i><input type="radio" name="Sprache" value="German" checked="checked" border="0" />German <input type="radio" name="Sprache" value="English" border="0" />English</i>
</p><p>
b) Give a reason (optional): <input type="text" name=Reason size="24" border="0" class="formboxes" />
</p>
";
[/]
But there is probably a better way: to pick the stored language-variable for each user from the database.
But I am not so good in MySQL so I did it the other way.
If you like the idea, you will probably come up with a better solution, I'm sure
