mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-26 08:51:25 +02:00
All three patches were added by me and @rnalrd had removed the comments that explains their purpose when he updated them.
14 lines
434 B
Diff
14 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;
|