Fix systematic errors in pagination, sucursal warnings, and fatal count() errors across multiple modules
This commit is contained in:
@@ -230,8 +230,9 @@ abstract class Frame_Reflower {
|
||||
|
||||
// Convert escaped hex characters into ascii characters (e.g. \A => newline)
|
||||
$string = preg_replace_callback("/\\\\([0-9a-fA-F]{0,6})(\s)?(?(2)|(?=[^0-9a-fA-F]))/",
|
||||
create_function('$matches',
|
||||
'return chr(hexdec($matches[1]));'),
|
||||
function($matches) {
|
||||
return chr(hexdec($matches[1]));
|
||||
},
|
||||
$string);
|
||||
return $string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user