diff --git a/src/applications/paste/controller/view/PhabricatorPasteViewController.php b/src/applications/paste/controller/view/PhabricatorPasteViewController.php index 578e5336e0..850fb7842d 100644 --- a/src/applications/paste/controller/view/PhabricatorPasteViewController.php +++ b/src/applications/paste/controller/view/PhabricatorPasteViewController.php @@ -104,7 +104,7 @@ class PhabricatorPasteViewController extends PhabricatorPasteController { $corpus_table = phutil_render_tag( 'table', array( - 'class' => "diffusion-source remarkup-code PhabricatorMonospaced", + 'class' => 'diffusion-source remarkup-code PhabricatorMonospaced', ), implode("\n", $rows)); @@ -127,7 +127,8 @@ class PhabricatorPasteViewController extends PhabricatorPasteController { // And eventually this will highlight a line that you click // like diffusion does. Or maybe allow for line comments // like differential. Either way it will be better than it is now. - $rows[] = ''.$n.''.$line.''; + $rows[] = ''.$n.''. + ''.$line.''; ++$n; }