mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix javascript interaction with right-hand-side images in two-up diff views in Differential
Summary: Fixes T10704. This is just bad copy-paste -- "O" for "old" should be "N" for "new". Test Plan: - Followed steps on T10704. - Applied patch. - Marked inline done, replied, etc. No more JS errors. Reviewers: chad Reviewed By: chad Maniphest Tasks: T10704 Differential Revision: https://secure.phabricator.com/D15566
This commit is contained in:
parent
ff4a63a954
commit
61301ead90
1 changed files with 1 additions and 1 deletions
|
@ -376,7 +376,7 @@ final class DifferentialChangesetTwoUpRenderer
|
|||
if (!$new) {
|
||||
$th_new = phutil_tag('th', array());
|
||||
} else {
|
||||
$th_new = phutil_tag('th', array('id' => "C{$id}OL1"), 1);
|
||||
$th_new = phutil_tag('th', array('id' => "C{$id}NL1"), 1);
|
||||
}
|
||||
|
||||
$output = hsprintf(
|
||||
|
|
Loading…
Reference in a new issue