What do you doing? =l
The 193 line are it:
function _file_get_contents($path) {
// Modified function from:
if (!preg_match('/^http/i', $path)) {
if ($fp = fopen($path, 'r')) {
return fread($fp, 1024);
} else {
return false;
}
}
The problem is a security issue with "file get contents" but this is solved with "curl".
Regards.