Bug #6168
Error Message for captcha not shown
| Status: | Resolved | Start date: | 2010-01-22 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | Validator | |||
| Target version: | - | |||
| Votes: | 0 |
Description
Hi,
I tried to include a sr_freecap catcha and noticed that the error message is not shown.
I debugged the code and it was due to this line in Tx_Formhandler_View_Form.php (line 792):
if($temp > 0) {
it seems this should be something like:
if($temp != '') {
as $temp is filled with a string message
Cheers,
Michael
History
Updated by Reinhard Führicht over 3 years ago
I think, this shouldn't matter. Anyway, I changed it to:
if(strlen($temp) > 0) {
Updated by Reinhard Führicht over 3 years ago
- Status changed from New to Resolved