Das Prolem was ich als erstes hier geschrieben habe hat sich erlediegt habe ihn deshalb auch gelöscht. Hatte leider etwas vergessen.
Aber nun bekomme ich eine Fehlermeldung wen ich das Profil aus der Mitgliederliste aufrufen möchte nach dem ich die Mods Eingabefeld und Textfeld eingebaut habe.
Im Profil sehe ich alle Felder und kann auch Speichern und die Daten werden übernommen.
Wen ich aber auf Mitgliederliste gehe und das Profil aufrufe habe ich diese Fehlermeldung:
Code: Alles auswählen
Fatal error: Cannot redeclare load_bbcode_template() (previously declared in /home/www/web22/html/phpbb3/includes/bbcode.php:45) in /home/www/web22/html/phpbb3/includes/bbcode.php on line 43
Code: Alles auswählen
/**
* Loads bbcode templates from the bbcode.tpl file of the current template set.
* Creates an array, keys are bbcode names like "b_open" or "url", values
* are the associated template.
* Probably pukes all over the place if there's something really screwed
* with the bbcode.tpl file.
*
* Nathan Codding, Sept 26 2001.
*/
function load_bbcode_template() **ZEILE 43**
{
global $template;
$tpl_filename = $template->make_filename('bbcode.tpl');
$tpl = fread(fopen($tpl_filename, 'r'), filesize($tpl_filename));
// replace \ with \\ and then ' with \'.
$tpl = str_replace('\\', '\\\\', $tpl);
$tpl = str_replace('\'', '\\\'', $tpl);
Gruß Ralf