1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-09 14:21:02 +01:00

fix fluid diff change

Summary: when we had a change that had new data and uncommitted changes the colspan could get off. make sure to only decrement the colspan if we are actually on a new line

Test Plan: http://phabricator.dev/rP1a3bf098ae4ab4f8add4af744a6b93a257851fb0 now looks good on Firefox

Reviewers: vrana, epriestley

Reviewed By: epriestley

CC: aran, Korvin

Maniphest Tasks: T2005

Differential Revision: https://secure.phabricator.com/D4109
This commit is contained in:
Bob Trahan 2012-12-07 12:00:28 -08:00
parent 56c401f614
commit 1922590f98

View file

@ -1552,7 +1552,6 @@ final class DifferentialChangesetParser {
$n_colspan--;
}
if ($this->new[$ii]['type']) {
if ($this->new[$ii]['type'] == '\\') {
$n_text = $this->new[$ii]['text'];
@ -1590,9 +1589,9 @@ final class DifferentialChangesetParser {
),
'');
}
}
$n_colspan--;
}
}
$n_classes .= ' right'.$n_colspan;