Update functions.php

This commit is contained in:
mr-GreyWolf 2016-03-30 23:07:02 +04:00
parent fa88250f0e
commit 599d55700d

View File

@ -2567,7 +2567,7 @@ function dn_unescape($dn) {
foreach ($dn as $key => $rdn)
$a[$key] = preg_replace_callback('/\\\([0-9A-Fa-f]{2})/',
function ($r) {
return "''.chr(hexdec('$r[1]')).''";
return chr(hexdec($r[1]));
},
$rdn
);
@ -2577,7 +2577,7 @@ function dn_unescape($dn) {
} else {
return preg_replace_callback('/\\\([0-9A-Fa-f]{2})/',
function ($r) {
return "''.chr(hexdec('$r[1]')).''";
return chr(hexdec($r[1]));
},
$dn
);