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 |
State ⇒ Resolved
State ⇒ Unconfirmed
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ Forward 3.0 bug where using postgresql
Queue ⇒ Forwards
"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') {