wo muss ich den die admin id eingeben?
finde das nciht und in der install steht das auch nicht.
wo muss ich den die admin id eingeben?
finde das nciht und in der install steht das auch nicht.
Da wird die aus der functions.lib.php verwendet
Kill one man, and you are a murderer.
Kill millions of men, and you are a conqueror.
Kill them all, and you are a god. - Jean Rostand, Thoughts of a Biologist (1939)
kann man den da auch 2 admins eintragen?
also vielleicht wo die id eingetragen wird 2;3 reinschreiben?
warum ließt du dir den Thread nicht durch?
im 2 Post hättest die lösung gefunden....
Kann mir bitte einer kurz erklären wie ich es hin bekomme das in der Toolbar des Editors der Button für: insert / edit link auch anklickbar ist wenn man kein anderes Zeichen markiert hat?
Guten Tag
ich Hab auch mal ne frage und zwar die funktion eregi_replace is doch veraltete in dem code is sie mit drin meine frage in was muß es geändert werden ??????
PHP-Code:
$text = eregi_replace("\[b\]([^\[]+)\[/b\]","<b>\\1</b>",$text);
$text = eregi_replace("\[i\]([^\[]+)\[/i\]","<i>\\1</i>",$text);
$text = preg_replace('/\[url=([^ ]+).*\](.*)\[\/url\]/', '<a href="$1" target=\"_blank\" >$2</a>', $text);
$text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1\">$2</span>",$text);
$text = preg_replace('/\n/', "<br/>\n", $text);
$text = eregi_replace("\[u\]([^\[]+)\[/u\]","<u>\\1</u>",$text);
$text = eregi_replace("\[img\]([^\[]+)\[/img\]","<img src=\"\\1\" border=\"0\">",$text);
$text = eregi_replace("\[mail\]([^\[]+)\[/mail\]","<a href=\"mailto:\\1\">\\1</a>",$text);
eregi_replace() -> preg_replace() mit modifier "i"
http://www.vms-tutorial.de/wiki/Depr..._is_deprecated
http://www.php.net/manual/de/referen...tern.posix.php
Kill one man, and you are a murderer.
Kill millions of men, and you are a conqueror.
Kill them all, and you are a god. - Jean Rostand, Thoughts of a Biologist (1939)
Danke für deine Idee aber das bekomm ich so nicht hin
So müsste das funktionieren, am besten einfach mal alle betroffenen BBCodes testen, also [b] [i] [u] [img] [mail]PHP-Code:
$text = preg_replace("#\[b\]([^\[]+)\[/b\]#i","<b>\\1</b>",$text); // neu
$text = preg_replace("#\[i\]([^\[]+)\[/i\]#i","<i>\\1</i>",$text); // neu
$text = preg_replace('/\[url=([^ ]+).*\](.*)\[\/url\]/', '<a href="$1" target=\"_blank\" >$2</a>', $text);
$text = preg_replace("(\[color=(.+?)\](.+?)\[\/color\])is","<span style=\"color: $1\">$2</span>",$text);
$text = preg_replace('/\n/', "<br/>\n", $text);
$text = preg_replace("#\[u\]([^\[]+)\[/u\]#i","<u>\\1</u>",$text); // neu
$text = preg_replace("#\[img\]([^\[]+)\[/img\]#i","<img src=\"\\1\" border=\"0\">",$text); // neu
$text = preg_replace("#\[mail\]([^\[]+)\[/mail\]#i","<a href=\"mailto:\\1\">\\1</a>",$text); // neu
Kill one man, and you are a murderer.
Kill millions of men, and you are a conqueror.
Kill them all, and you are a god. - Jean Rostand, Thoughts of a Biologist (1939)
wow vielen Dank das klappt wunderbar