Commit order should always be returned by api.
https://bugs.webkit.org/show_bug.cgi?id=184674
Summary Commit order should always be returned by api.
dewei_zhu
Reported 2018-04-16 17:08:24 PDT
Commit order should always be returned by api.
Attachments
Patch (17.54 KB, patch)
2018-04-16 17:13 PDT, dewei_zhu
rniwa: review+
dewei_zhu
Comment 1 2018-04-16 17:13:45 PDT
Ryosuke Niwa
Comment 2 2018-04-17 02:44:14 PDT
Comment on attachment 338061 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=338061&action=review > Websites/perf.webkit.org/public/api/measurement-set.php:223 > + $order = !strlen($trimmed_order) ? NULL : intval($trimmed_order); I think it's a little more straight forward to do: strlen($trimmed_order) ? intval($trimmed_order) : NULL.
Note You need to log in before you can comment on or make changes to this bug.