@@ 4534-4539 (lines=6) @@ | ||
4531 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) && 'GMT+' === substr( $b['city'], 0, 4 ) ) { |
|
4532 | return -1 * ( strnatcasecmp( $a['city'], $b['city'] ) ); |
|
4533 | } |
|
4534 | if ( 'UTC' === $a['city'] ) { |
|
4535 | if ( 'GMT+' === substr( $b['city'], 0, 4 ) ) { |
|
4536 | return 1; |
|
4537 | } |
|
4538 | return -1; |
|
4539 | } |
|
4540 | if ( 'UTC' === $b['city'] ) { |
|
4541 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) { |
|
4542 | return -1; |
|
@@ 4540-4545 (lines=6) @@ | ||
4537 | } |
|
4538 | return -1; |
|
4539 | } |
|
4540 | if ( 'UTC' === $b['city'] ) { |
|
4541 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) { |
|
4542 | return -1; |
|
4543 | } |
|
4544 | return 1; |
|
4545 | } |
|
4546 | return strnatcasecmp( $a['city'], $b['city'] ); |
|
4547 | } |
|
4548 | if ( $a['t_continent'] == $b['t_continent'] ) { |