sorry leute...das ich hier nachfrage...aber im wbb ist mir das ein zu grosses durcheinander!
ich habe jetzt die rootdateien alle aufs 2.3.4 upgedated!...bis auf eine!
die usercp.php!....da hatte ich schon bei dominik probleme
folgende dinge kann ich nicht finden und dementsprechend auch nicht ersetzen!
ich wäre euch wirklich sehr dankbar wenn sich das einer mal anschauen könnte
danke!
(Zeile 124) Suche nach:
-----------------------
$options = trim_array(explode("\n", dos2unix($row['fieldoptions'])));
Und ersetze es mit:
-------------------
$temp = explode("\n", dos2unix($row['fieldoptions']));
$options = trim_array($temp);
(Zeile 131) Suche nach:
-----------------------
$options = trim_array(explode("\n", dos2unix($row['fieldoptions'])));
Und ersetze es mit:
-------------------
$temp = explode("\n", dos2unix($row['fieldoptions']));
$options = trim_array();