[#4090] Forward 3.0 bug where using postgresql
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

History
06/30/2006 Chuck Hagenbuch Comment #2
State ⇒ Resolved
Reply to this comment
Fixed in CVS, thanks.
06/29/2006 paul (at) xtrapower (dot) net Comment #1
Queue ⇒ Forwards
Summary ⇒ Forward 3.0 bug where using postgresql
Type ⇒ Bug
Priority ⇒ 2. Medium
State ⇒ Unconfirmed
Reply to this comment
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') {