Summary | custom SQL driver bug (keep local copy value) |
Queue | Forwards |
Queue Version | 3.0.1 |
Type | Bug |
State | Resolved |
Priority | 3. High |
Owners | |
Requester | czigola (at) gmail (dot) com |
Created | 04/20/2007 (6623 days ago) |
Due | 02/28/2007 (6674 days ago) |
Updated | 04/20/2007 (6623 days ago) |
Assigned | |
Resolved | 04/20/2007 (6623 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
State ⇒ Resolved
Due ⇒ 02/28/2007
State ⇒ Unconfirmed
Priority ⇒ 3. High
Type ⇒ Bug
Summary ⇒ custom SQL driver bug (keep local copy value)
Due ⇒ 03/31/2007
Queue ⇒ Forwards
forwarded addresses will be a "Y" or "N" value provided as \L."
This is correct, and the module later depends on this domain of
values. However forwards/lib/Driver/customsql.php on line 77 sets the
value to either 'Yes' or 'No'.
I suggest to change the file mentioned at line 77 to:
$keeplocal = ($keeplocal == 'on') ? 'Y' : 'N';