add reception account transfer/mixed
This commit is contained in:
@@ -254,6 +254,13 @@ class Helper {
|
||||
public static function fixAsciiChars($in) {
|
||||
$out = str_replace ( "ö", "0", $in );
|
||||
$out = str_replace ( "Ö", "0", $out );
|
||||
/*
|
||||
$out = str_replace ( "Y", "%", $out );
|
||||
$out = str_replace ( "y", "%", $out );
|
||||
$out = str_replace ( "Z", "y", $out );
|
||||
$out = str_replace ( "z", "y", $out );
|
||||
$out = str_replace ( "%", "y", $out );
|
||||
*/
|
||||
return $out;
|
||||
}
|
||||
public static function isUserCartVisibilityUser() {
|
||||
@@ -361,7 +368,7 @@ class Helper {
|
||||
return $result;
|
||||
}
|
||||
|
||||
public static function generateRandomString($length = 6,$characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ' ) {
|
||||
public static function generateRandomString($length = 6,$characters = '0123456789ABCDEFGHIJKLMNOPQRSTUVWX' ) {
|
||||
$charactersLength = strlen($characters);
|
||||
$randomString = '';
|
||||
for ($i = 0; $i < $length; $i++) {
|
||||
|
||||
Reference in New Issue
Block a user