Hello everyone, I'm a newbie in php. I'm using version 6.2.3 of the address
book and I like the phone numbers to be separated by dashes this way
"5823-1234" or "044-55-2345-8976" when I add a new contact I type the dashes
in, but they are not shown once I open the index page like they used to in
previous version 5.4.6 please tell me what to change so they are shown the way
I type them.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello everyone, I'm a newbie in php. I'm using version 6.2.3 of the address
book and I like the phone numbers to be separated by dashes this way
"5823-1234" or "044-55-2345-8976" when I add a new contact I type the dashes
in, but they are not shown once I open the index page like they used to in
previous version 5.4.6 please tell me what to change so they are shown the way
I type them.
Find in "index.php":
$phone = $addr->shortPhone();
Replace with:
if($full_phone) {
$phone = $addr->firstPhone();
} else {
$phone = $addr->shortPhone();
}
===
Add to "config.php":
$full_phone = true;
===
Regards
Olivier
Will be included in next release.
Thanks a lot chatelao, I'll try it and come back to comment.
Excellent!!! it worked, it really worked.
I really appreciate your help.
Best wishes,
hemseh