Summary | Missing concatenation in tableset_html.php |
Queue | Horde Framework Packages |
Queue Version | HEAD |
Type | Bug |
State | Resolved |
Priority | 1. Low |
Owners | chuck (at) horde (dot) org |
Requester | proy (at) corom (dot) ca |
Created | 07/28/2008 (6211 days ago) |
Due | |
Updated | 07/28/2008 (6211 days ago) |
Assigned | |
Resolved | 07/28/2008 (6211 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
Assigned to Chuck Hagenbuch
State ⇒ Resolved
http://cvs.horde.org/diff.php/framework/UI/UI/VarRenderer/tableset_html.php?r1=1.5&r2=1.6&ty=u
http://cvs.horde.org/diff.php/horde/docs/CHANGES?r1=1.1134&r2=1.1135&ty=u
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Horde Framework Packages
Summary ⇒ Missing concatenation in tableset_html.php
Type ⇒ Bug
State ⇒ Unconfirmed
concatenation character (.) is missing.
Current: $checked = (in_array($value, $checkedValues)) ? ' green">V' :
'red">X';
Should be: $checked .= (in_array($value, $checkedValues)) ? '
green">V' : 'red">X';
Using Horde 4.0
tableset_html.php version 1.5 dated 2007/03/25
Cheers!
Paul Roy
proy (at) corom [ dot ] ca