
Larry Wakeman - 2007-03-05 20:08:30
In the 22nd line ("$this->clave .= $this->vector[rand(0,count($this->vector))];") is a bug, it should be "$this->clave .= $this->vector[rand(0,count($this->vector)-1)];". Without the -1, you will get frequent Undefined offset errors. I also added "O" to the $vector array as well as "-" and "_".