Just found a bug:
When a channel or a channel topic contains single-quotes, the SQL query for updating the server details fails.
I solved it this way:
In db_inc.php:
Code:
function escapequote($var1) {
return(ereg_replace("'", "\\'", $var1));
}
In db_inc.php, function insertchannelinfo:
Code:
...
$channeldata5 = escapequote(addslashes(htmlspecialchars(trim($channeldata[5])))); // name
$channeldata8 = escapequote(trim($channeldata[8])); // topic
-Fritze
PS:
Would be nice to have a mail-address from the developer for sending patches. This WebForum software sucks when one wants to send patches...