http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8125

Colin Campbell <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |colin.campbell@ptfs-europe.
                   |                            |com

--- Comment #2 from Colin Campbell <[email protected]> ---
The zip code is just part of the address in sip terms, but the patch as is does
not do that it appends address to adr but it never appends zip you probably
want two lines and make the second test on $adr && $zip the test (is there a
string of greater than 0 length in both elsements?) is there to decide whether
to add a space before appending the new element. I think

$adr .= ($adr && $address ) ? " $address" : $address;
$adr .= ($adr && $zip) ? " $zip" : $zip;

is what you want.

-- 
You are receiving this mail because:
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to