6.0.0-beta1
8/9/25

[#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 (6981 days ago)
Due
Updated 06/30/2006 (6980 days ago)
Assigned
Resolved 06/30/2006 (6980 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

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

Saved Queries