Skip to content

Commit

Permalink
pts-core: Drop prior change for now
Browse files Browse the repository at this point in the history
  • Loading branch information
michaellarabel committed Mar 11, 2021
1 parent 075940e commit b18bd6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pts-core/objects/pts_result_file.php
Expand Up @@ -1056,7 +1056,7 @@ public function sort_result_object_order_by_title($asc = true)
}
public static function result_title_comparison($a, $b)
{
return ($a->test_profile->get_identifier() == null ? 'Z ' : $a->test_profile->get_identifier()) . strcmp(strtolower($a->test_profile->get_title()) . ' ' . $a->test_profile->get_app_version(), strtolower($b->test_profile->get_title()) . ' ' . $b->test_profile->get_app_version());
return strcmp(strtolower($a->test_profile->get_title()) . ' ' . $a->test_profile->get_app_version(), strtolower($b->test_profile->get_title()) . ' ' . $b->test_profile->get_app_version());
}
public function sort_result_object_order_by_result_scale($asc = true)
{
Expand Down

0 comments on commit b18bd6c

Please sign in to comment.