Menu

Dashes in phone numbers

Help
hemseh
2010-12-07
2012-06-07
  • hemseh

    hemseh - 2010-12-07

    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.

     
  • chatelao

    chatelao - 2010-12-13

    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

     
  • chatelao

    chatelao - 2010-12-13

    Will be included in next release.

     
  • hemseh

    hemseh - 2010-12-17

    Thanks a lot chatelao, I'll try it and come back to comment.

     
  • hemseh

    hemseh - 2011-11-05

    Excellent!!! it worked, it really worked.

    I really appreciate your help.

    Best wishes,

    hemseh

     

Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.