Nettes Hallo an Euch ...
... in der Funktion usersconfig (Benutzer-Einstellungen) besteht doch die Möglichkeit, neue Usern automatisch per PN zu begrüßen. Diese Funktion hier;
###########
Sende Willkommens-Nachricht Ja Nein usw.
###########
... wird bei uns plötzlich nicht mehr angezeigt. Es liegt aber nicht an der Datei "usersconfig.php", da dieselbe auf einer anderen Seite die Funktion anzeigt.
Jemand einen Tipp für mich, was noch dafür verantwortlich sein könnte?
Gruß und Dank
Peter
Hab`s gefunden....! War in der functions.php im Modul Private Nachrichten die Funktion;
#########
function mxPmGetPictos($current)
{
global $url_icons;
$count = 0;
$handle = opendir($url_icons);
while ($file = readdir($handle)) {
if (ereg(".gif|.jpg", $file)) {
$filelist[] = $file;
}
}
asort($filelist);
$pictos = '<table border="0" cellspacing="0" cellpadding="0"><tr>';
foreach ($filelist as $file) {
if ($file == $current) {
$sel = " checked";
} else {
$sel = "";
}
$pictos .= "<td><input type=\"radio\" name=\"image\" value=\"$file\"$sel style=\"background-color: transparent;\"><img src=\"$url_icons/$file\" alt=\"\" border=\"0\"></td>";
$count++;
if ($count >= 8) {
$count = 0;
$pictos .= "</tr><tr>";
}
}
$pictos .= '</tr></table>';
$pictos = str_replace('<tr></tr>', '', $pictos);
return $pictos;
}
########
Gruß
Peter