Ich hab ein kleines Problem beim Updaten: in der Updateanleitung steht ja
Finde:
- Code: Alles auswählen
// Generate the required confirmation code
// NB 0 (zero) could get confused with O (the letter) so we make change it
$code = dss_rand();
$code = substr(str_replace('0', 'Z', strtoupper(base_convert($code, 16, 35))), 2, 6);
bei mir schaut der Bereich aber so aus:
- Code: Alles auswählen
// Generate the required confirmation code
$code = dss_rand();
$code = strtoupper($code);
$code = str_replace('0', '', $code); // NB 0 (zero) could get confused with O (the letter) so we remove it
$code = str_replace('I', '', $code); // The letter I could get confused with the letter J and the 1 (number one) so we remove the letter I
$code = substr($code, 6);
kann ich den Bereich trotzdem wie in der Anleitung beschrieben updaten?
Herzlichen Dank für etwaige Hilfe