use new flag to place captcha errors in the error log (if debug is set)

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9921 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Henry Sudhof 2009-08-04 15:34:45 +00:00
parent ccbbaba91d
commit 81998a5104

View file

@ -66,6 +66,7 @@ class phpbb_default_captcha
$this->seed -= 0x7fffffff * floor($this->seed / 0x7fffffff);
$captcha = new captcha();
define('IMAGE_OUTPUT', 1);
$captcha->execute($this->code, $this->seed);
}
@ -80,6 +81,7 @@ class phpbb_default_captcha
}
}
$captcha = new captcha();
define('IMAGE_OUTPUT', 1);
$captcha->execute($this->code, $this->seed);
}