diff --git a/src/wp-includes/formatting.php b/src/wp-includes/formatting.php
index d25b69e..d0d3b80 100644
a
|
b
|
|
2823 | 2823 | |
2824 | 2824 | $diff = (int) abs( $to - $from ); |
2825 | 2825 | |
2826 | | if ( $diff < HOUR_IN_SECONDS ) { |
| 2826 | if ( $diff < MINUTE_IN_SECONDS ) { |
| 2827 | $secs = round( $diff / MINUTE_IN_SECONDS ); |
| 2828 | if ( $secs <= 1 ) |
| 2829 | $secs = 1; |
| 2830 | $since = sprintf( _n( '%s second', '%s seconds', $secs ), $secs ); |
| 2831 | } elseif ( $diff < HOUR_IN_SECONDS && $diff >= MINUTE_IN_SECONDS ) { |
2827 | 2832 | $mins = round( $diff / MINUTE_IN_SECONDS ); |
2828 | 2833 | if ( $mins <= 1 ) |
2829 | 2834 | $mins = 1; |