From 53b4882b8073439f00502587e9979f93a56e232d Mon Sep 17 00:00:00 2001 From: epriestley Date: Wed, 10 Jan 2018 13:32:44 -0800 Subject: [PATCH] (stable) Fix a copy/paste error on the burnup chart Summary: See PHI286, maybe. See PHI273. Strongly considering just deleting this. Test Plan: ~.~ Reviewers: amckinley Reviewed By: amckinley Differential Revision: https://secure.phabricator.com/D18865 --- .../maniphest/controller/ManiphestReportController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/maniphest/controller/ManiphestReportController.php b/src/applications/maniphest/controller/ManiphestReportController.php index 3ba597fb92..4f546d04c5 100644 --- a/src/applications/maniphest/controller/ManiphestReportController.php +++ b/src/applications/maniphest/controller/ManiphestReportController.php @@ -140,7 +140,7 @@ final class ManiphestReportController extends ManiphestController { } $oldv = trim($row['oldValue'], '"'); - $newv = trim($row['oldValue'], '"'); + $newv = trim($row['newValue'], '"'); // If this is a status change, preserve it. if ($oldv != 'null') {