Hallo
Also ich hab mir eben das mxBoard installiert.
Aktuellste Version von Pragma.
Als Theme hab ich das Asian Essence.
Wenn ich jetzt ins Forum will bekomm ich diese Meldung ganz oben.
Notice: Undefined variable: topic in /***/theme.php on line 81
Notice: Undefined variable: sel in /***/theme.php on line 82
Woran kann das liegen ?
gehe in deine theme.php
und lösche dieses raus !!
$topics_list = "<select name=\"new_topic\" onChange='submit()'>\n";
$topics_list .= "<option value=\"\">All Topics</option>\n";
$toplist = sql_query("select topicid, topictext from ".$prefix."_topics order by topictext", $dbi);
while(list($topicid, $topics) = sql_fetch_row($toplist, $dbi)) {
if ($topicid==$topic) { $sel = "selected "; }
$topics_list .= "<option $sel value=\"$topicid\">$topics</option>\n";
$sel = "";
}