Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/09/2009, 11:53
rrodriguez1310
 
Fecha de Ingreso: junio-2006
Mensajes: 175
Antigüedad: 17 años, 10 meses
Puntos: 0
Respuesta: Deprecated: Function set_magic_quotes_runtime() con phpmailer

exacto aqui el codigo anterior con la instruccion erronea....

if (PHP_VERSION < 6) {
$magic_quotes = get_magic_quotes_runtime();
set_magic_quotes_runtime(0);
}
$file_buffer = file_get_contents($path);
$file_buffer = $this->EncodeString($file_buffer, $encoding);
fclose($fd);
if (PHP_VERSION < 6) { set_magic_quotes_runtime($magic_quotes); }
return $file_buffer;
}
y la el codigo con nueva instrauccion...

if (PHP_VERSION < 6) {
$magic_quotes = get_magic_quotes_runtime();
ini_set("magic_quotes_runtime", 0);
}
$file_buffer = file_get_contents($path);
$file_buffer = $this->EncodeString($file_buffer, $encoding);
fclose($fd);
if (PHP_VERSION < 6) { ini_set("magic_quotes_runtime", $magic_quotes); }
return $file_buffer;
}
de igual forma gracias espero que esto le pueda servir a alguien con el mismo problema....
__________________
Lo poco que sé se lo debo a mi ignorancia....