Active
Project:
Account Sync
Version:
7.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
22 May 2014 at 12:10 UTC
Updated:
8 Jul 2014 at 03:49 UTC
Jump to comment: Most recent, Most recent file
I'm developing in windows, and when multiple path are inserted in the Sender setting tab the account_sync_servers($account) function at line 50 in account_sync.sender.inc gives me an array where path include \r character
for example
[0] => http://site-a.local\r
[1] => http://site-b.local\r
[2] => http://site-c.local
so synchronization for multiple servers is not working for me.
changing this line
$servers[] = $server;
in this way
$servers[] = trim($server);
in account_sync.module, line 120
in this way it works for me..
| Comment | File | Size | Author |
|---|---|---|---|
| #1 | account-sync-multiple-addresses-2272485-1.patch | 451 bytes | francescoq |
Comments
Comment #1
francescoq commentedHere's the patch
Comment #2
sandip choudhury commentedThis works for me also. I am in linux shared hosting.
Comment #3
sandip choudhury commentedHello hadsie, Please apply this patch in Account Sync module.