mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
All three patches were added by me and @rnalrd had removed the comments that explains their purpose when he updated them.
13 lines
434 B
Diff
13 lines
434 B
Diff
iconv on Alpine does not support conversion to ASCII//TRANSLIT
|
|
|
|
--- a/apps/user_ldap/lib/Access.php
|
|
+++ b/apps/user_ldap/lib/Access.php
|
|
@@ -1318,7 +1318,7 @@
|
|
}
|
|
|
|
// Transliteration to ASCII
|
|
- $transliterated = @iconv('UTF-8', 'ASCII//TRANSLIT', $name);
|
|
+ $transliterated = @iconv('UTF-8', 'ASCII', $name);
|
|
if($transliterated !== false) {
|
|
// depending on system config iconv can work or not
|
|
$name = $transliterated;
|