Reply to thread

Got this error message since 1.5.3




These lines in Register.php...


[php]

if (!$userId)

        {

            $loginModel->logLoginAttempt($associate['associate_login']);

            throw $this->responseException(

                $this->responseError($error)

            );

        }[/php]


Should be...


[php]

if (!$userId)

        {

            $loginModel->logLoginAttempt($visitor['username']);

            throw $this->responseException(

                $this->responseError($error)

            );

        }[/php]


Back
Top Bottom