mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01: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:
parent
2140741e25
commit
82bfb98179
1 changed files with 1 additions and 1 deletions
|
@ -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') {
|
||||
|
|
Loading…
Reference in a new issue