Ver Mensaje Individual
  #2 (permalink)  
Antiguo 05/12/2008, 09:25
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Bad arguments en function implode... Clase PliggMailer

Pues tanto de PHP OO, no es, si te fijas la linea 31 dice: $send_to = implode(',', $this->to);, si en algun momento tu defines $to como un string, te va a dar el error, te recomiendo hacer algo así:
Código php:
Ver original
  1. if(is_array($this->to)) {
  2.     $send_to = implode(',', $this->to);
  3. } else {
  4.     $send_to = $this->to;
  5. }

Saludos.