[#3089] customsql driver always sets keeplocal=Yes
Summary customsql driver always sets keeplocal=Yes
Queue Forwards
Queue Version HEAD
Type Bug
State Resolved
Priority 2. Medium
Owners
Requester roland (at) robelix (dot) com
Created 12/04/2005 (889 days ago)
Due
Updated 12/04/2005 (889 days ago)
Assigned
Resolved 12/04/2005 (889 days ago)
Attachments
Milestone
Patch

History
12/04/2005 Chuck Hagenbuch Comment #2
State ⇒ Resolved
Reply to this comment
Committed, thanks.
12/04/2005 roland (at) robelix (dot) com Comment #1
Priority ⇒ 2. Medium
State ⇒ Unconfirmed
Type ⇒ Bug
Summary ⇒ customsql driver always sets keeplocal=Yes
Queue ⇒ Forwards
Reply to this comment
I found out that the customsql driver does not correctly set the keeplocal value (\L).  I'ts always 'Yes'.

Resolution: a patch for forwards/lib/Driver/customsql.php
77c77
<         $keeplocal = $keeplocal ? 'Yes' : 'No';
---
>         $keeplocal = ($keeplocal=='on') ? 'Yes' : 'No';