1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-19 16:58:48 +02:00

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
This commit is contained in:
epriestley 2018-01-10 13:32:44 -08:00
parent 2140741e25
commit 82bfb98179

View file

@ -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') {