Ver Mensaje Individual
  #3 (permalink)  
Antiguo 29/09/2010, 08:17
Curda
 
Fecha de Ingreso: septiembre-2009
Ubicación: Queretaro
Mensajes: 51
Antigüedad: 14 años, 7 meses
Puntos: 2
Respuesta: Clase PHPmailer Deprecated: Function set_magic_quotes_runtime()

La posible solución no oficial aun podría ser esta:

Código PHP:
Ver original
  1. if (PHP_VERSION < 6) {
  2. $magic_quotes = get_magic_quotes_runtime();
  3. ini_set("magic_quotes_runtime", 0);
  4. }
  5. $file_buffer = file_get_contents($path);
  6. $file_buffer = $this->EncodeString($file_buffer, $encoding);
  7. @fclose($fd);
  8. if (PHP_VERSION < 6) { ini_set("magic_quotes_runtime", $magic_quotes); }
  9. return $file_buffer;
  10. }