1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Revert "Unuse binary characters"

This reverts commit f3c59bb3a5.
This commit is contained in:
Jakub Vrana
2012-09-26 21:45:04 -07:00
parent 7ce485bc78
commit 75c430a986
2 changed files with 10 additions and 20 deletions

View File

@@ -978,13 +978,3 @@ function lzw_decompress($binary) {
}
return $return;
}
// used in compiled version
function latin_binary($s) {
return preg_replace_callback('~ (.)~', 'latin_binary_callback', $s);
}
// used in compiled version
function latin_binary_callback($match) {
return chr(ord($match[1]) - 48); // 48 = ord('0')
}