Results 1 to 2 of 2

Thread: Title Time Script code redundancy

  1. #1
    Join Date
    Mar 2006
    Location
    Illinois, USA
    Posts
    12,164
    Thanks
    265
    Thanked 690 Times in 678 Posts

    Default Title Time Script code redundancy

    1) Script Title: Title Time Script

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamicindex6/titletime.htm

    3) Describe problem: This code is just insane.
    For every PM hour, there is an else if {} block.
    It should simply be updated to if (hour>12 && hour!=24).
    No?
    Code:
    function antiMilitaryTime()
    {
    if (hr == "12"){
    ampm="P.M."
    }
    else if (hr == "13"){
    hr="1"
    ampm="P.M."
    }
    else if (hr == "14"){
    hr="2"
    ampm="P.M."
    }
    else if (hr == "15"){
    hr ="3"
    ampm="P.M."
    }
    else if (hr == "16"){
    hr = "4"
    ampm="P.M."
    }
    else if (hr == "17"){
    hr = "5"
    ampm="P.M."
    }
    else if (hr == "18"){
    hr = "6"
    ampm="P.M."
    }
    else if (hr == "19"){
    hr = "7"
    ampm="P.M."
    }
    else if (hr == "20"){
    hr = "8"
    ampm="P.M."
    }
    else if (hr == "21"){
    hr = "9"
    ampm="P.M."
    }
    else if (hr == "22"){
    hr = "10"
    ampm="P.M."
    }
    else if (hr == "23"){
    hr = "11"
    ampm="P.M."
    }
    else if (hr == "24"){
    hr = "12"
    }
    }
    Daniel - Freelance Web Design | <?php?> | <html>| español | Deutsch | italiano | português | català | un peu de français | some knowledge of several other languages: I can sometimes help translate here on DD | Linguistics Forum

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Sloppy coding, but - not a bug.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •