Title: [198465] trunk/Websites/perf.webkit.org
- Revision
- 198465
- Author
- [email protected]
- Date
- 2016-03-18 20:33:11 -0700 (Fri, 18 Mar 2016)
Log Message
Build fix after r198234.
* public/api/commits.php:
(main): Typo: fetch_latest_reported -> fetch_last_reported.
* public/include/commit-log-fetcher.php:
(CommitLogFetcher::format_single_commit): commits should be an array.
Modified Paths
Diff
Modified: trunk/Websites/perf.webkit.org/ChangeLog (198464 => 198465)
--- trunk/Websites/perf.webkit.org/ChangeLog 2016-03-19 03:29:44 UTC (rev 198464)
+++ trunk/Websites/perf.webkit.org/ChangeLog 2016-03-19 03:33:11 UTC (rev 198465)
@@ -1,5 +1,14 @@
2016-03-18 Ryosuke Niwa <[email protected]>
+ Build fix after r198234.
+
+ * public/api/commits.php:
+ (main): Typo: fetch_latest_reported -> fetch_last_reported.
+ * public/include/commit-log-fetcher.php:
+ (CommitLogFetcher::format_single_commit): commits should be an array.
+
+2016-03-18 Ryosuke Niwa <[email protected]>
+
Perf Dashboard v3 confuses better and worse on A/B task page
https://bugs.webkit.org/show_bug.cgi?id=155675
<rdar://problem/25208723>
Modified: trunk/Websites/perf.webkit.org/public/api/commits.php (198464 => 198465)
--- trunk/Websites/perf.webkit.org/public/api/commits.php 2016-03-19 03:29:44 UTC (rev 198464)
+++ trunk/Websites/perf.webkit.org/public/api/commits.php 2016-03-19 03:33:11 UTC (rev 198465)
@@ -32,7 +32,7 @@
} else if ($filter == 'latest') {
$commits = $fetcher->fetch_latest($repository_id);
} else if ($filter == 'last-reported') {
- $commits = $fetcher->fetch_latest_reported($repository_id);
+ $commits = $fetcher->fetch_last_reported($repository_id);
} else if (ctype_alnum($filter)) {
$commits = $fetcher->fetch_revision($repository_id, $filter);
} else {
Modified: trunk/Websites/perf.webkit.org/public/include/commit-log-fetcher.php (198464 => 198465)
--- trunk/Websites/perf.webkit.org/public/include/commit-log-fetcher.php 2016-03-19 03:29:44 UTC (rev 198464)
+++ trunk/Websites/perf.webkit.org/public/include/commit-log-fetcher.php 2016-03-19 03:33:11 UTC (rev 198465)
@@ -112,7 +112,7 @@
private function format_single_commit($commit_row) {
$committer = $this->db->select_first_row('committers', 'committer', array('id' => $commit_row['commit_committer']));
- return $this->format_commit($commit_row, $committer);
+ return array($this->format_commit($commit_row, $committer));
}
private function format_commit($commit_row, $committer_row) {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes