Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #39667, comment 32


Ignore:
Timestamp:
09/08/2018 12:51:46 PM (5 years ago)
Author:
birgire
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39667, comment 32

    v1 v2  
    1111{{{
    1212array( '39:59:59', '39 hours, 59 minutes, 59 seconds' ), // Maximum support for HH:ii:ss.
    13 array( '59:61', false ), // Out of bound seconds for ii:ss.
    14 array( '61:59', false ),  // Out of bound minutes for ii:ss.
    15 array( '3:59:61', false ), // Out of bound seconds for HH:ii:ss.
    16 array( '3:61:59', false ), // Out of bound minutes for HH:ii:ss.
     13array( '59:60', false ), // Out of bound seconds for ii:ss.
     14array( '60:59', false ),  // Out of bound minutes for ii:ss.
     15array( '3:59:60', false ), // Out of bound seconds for HH:ii:ss.
     16array( '3:60:59', false ), // Out of bound minutes for HH:ii:ss.
    1717array( '40:00:00', false ), // Out of bound hours for HH:ii:ss.
    1818}}}