We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Firebug send NULL value when value is an accent Latin char encoded.
Ex : fb( 'éèàù','accents',FirePHP::INFO); In FireBug Console -> accents : NULL
I had to patch FirePHP.class.php line 1385 : return (mb_detect_encoding($str,'UTF-8',true) == 'UTF-8');
So in firebug console -> accents : éèàù
The text was updated successfully, but these errors were encountered:
Also:
Logging a string variable with accent. For instance $test="diplôme" returns NULL as a value in FirePHP.
$test="diplôme"
Sorry, something went wrong.
No branches or pull requests
Firebug send NULL value when value is an accent Latin char encoded.
Ex : fb( 'éèàù','accents',FirePHP::INFO);
In FireBug Console -> accents : NULL
I had to patch FirePHP.class.php line 1385 :
return (mb_detect_encoding($str,'UTF-8',true) == 'UTF-8');
So in firebug console -> accents : éèàù
The text was updated successfully, but these errors were encountered: