@@ 4402-4407 (lines=6) @@ | ||
4399 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) && 'GMT+' === substr( $b['city'], 0, 4 ) ) { |
|
4400 | return -1 * ( strnatcasecmp( $a['city'], $b['city'] ) ); |
|
4401 | } |
|
4402 | if ( 'UTC' === $a['city'] ) { |
|
4403 | if ( 'GMT+' === substr( $b['city'], 0, 4 ) ) { |
|
4404 | return 1; |
|
4405 | } |
|
4406 | return -1; |
|
4407 | } |
|
4408 | if ( 'UTC' === $b['city'] ) { |
|
4409 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) { |
|
4410 | return -1; |
|
@@ 4408-4413 (lines=6) @@ | ||
4405 | } |
|
4406 | return -1; |
|
4407 | } |
|
4408 | if ( 'UTC' === $b['city'] ) { |
|
4409 | if ( 'GMT+' === substr( $a['city'], 0, 4 ) ) { |
|
4410 | return -1; |
|
4411 | } |
|
4412 | return 1; |
|
4413 | } |
|
4414 | return strnatcasecmp( $a['city'], $b['city'] ); |
|
4415 | } |
|
4416 | if ( $a['t_continent'] == $b['t_continent'] ) { |