| Summary | Forward 3.0 bug where using postgresql |
| Queue | Forwards |
| Queue Version | 3.0-RC1 |
| Type | Bug |
| State | Resolved |
| Priority | 2. Medium |
| Owners | |
| Requester | paul (at) xtrapower (dot) net |
| Created | 06/29/2006 (682 days ago) |
| Due | |
| Updated | 06/30/2006 (681 days ago) |
| Assigned | |
| Resolved | 06/30/2006 (681 days ago) |
| Attachments | |
| Milestone | |
| Patch |
State ⇒ Resolved
Fixed in CVS, thanks.Queue ⇒ Forwards
Summary ⇒ Forward 3.0 bug where using postgresql
Type ⇒ Bug
Priority ⇒ 2. Medium
State ⇒ Unconfirmed
I store forwards information to postgresql by customize setting on "forwards" and found this bug:
keeplocalcopy status stores as 'Yes' or 'No', but the function "isKeepLocal" check 'Y', not 'Yes', so I did the following change on my plugins "forwards" ;)
file: /usr/share/horde/forwards/lib/Driver/customsql.php
function: isKeepLocal
Line: 306
if ($current_details[$this->_params['column_keeplocal']] == 'Y') {
to:
if ($current_details[$this->_params['column_keeplocal']] == 'Yes') {