@@ 4497-4498 (lines=2) @@ | ||
4494 | $d1['min'] = ( isset( $d1['min'] )) ? $d1['min'] : 0; |
|
4495 | $d1['sec'] = ( isset( $d1['sec'] )) ? $d1['sec'] : 0; |
|
4496 | $dtend = mktime( $d1['hour'], $d1['min'], $d1['sec'], $d1['month'], $d1['day'], $d1['year'] ); |
|
4497 | if( isset( $dur['week'] )) |
|
4498 | $dtend += ( $dur['week'] * 7 * 24 * 60 * 60 ); |
|
4499 | if( isset( $dur['day'] )) |
|
4500 | $dtend += ( $dur['day'] * 24 * 60 * 60 ); |
|
4501 | if( isset( $dur['hour'] )) |
|
@@ 4499-4500 (lines=2) @@ | ||
4496 | $dtend = mktime( $d1['hour'], $d1['min'], $d1['sec'], $d1['month'], $d1['day'], $d1['year'] ); |
|
4497 | if( isset( $dur['week'] )) |
|
4498 | $dtend += ( $dur['week'] * 7 * 24 * 60 * 60 ); |
|
4499 | if( isset( $dur['day'] )) |
|
4500 | $dtend += ( $dur['day'] * 24 * 60 * 60 ); |
|
4501 | if( isset( $dur['hour'] )) |
|
4502 | $dtend += ( $dur['hour'] * 60 *60 ); |
|
4503 | if( isset( $dur['min'] )) |