the current release 7.5.9 has:
// suhosin Check by VNC Web Services (http://www.virtualnightclub.net/)
if(extension_loaded("suhosin") && ini_get("suhosin.get.max_value_length")) {
if(ini_get("suhosin.get.max_value_length") <= 2048) {
$suhosin = "You may experience issues with a blank configuration file if you continue, please see <a href=\"http://www.ubbwiki.com/article/view/16/issues-with-suhosin.html\" target=\"_blank\">UBBDev Wiki: Issues with suhosin</a>; this issue pertains to the settings of the suhosin module with your webhost. Your current suhousin length is: ". ini_get("suhosin.get.max_value_length") .".";
} else {
$suhosin = "";
}
}
So the way I read it , it only reads
suhosin.get.max_value_length.
if it is less than or equal to 2048 show a warning( add it to $suhosin).
If it is greater than 2048 then the $suhosin value is null.
Now I see Giz has a new enhanced release for this check.
But at ubb I think jake's issue was well founded.
probably the host removed suhosin as was quoted.
I guess I need to build a sandbox with a shared host account for 7.5.9 and +.