mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-02 09:58:24 +01:00
Fix undefined variable "none"
Summary: Assuming this is right? Test Plan: No more exception error when viewing a revision. Reviewers: vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D4937
This commit is contained in:
parent
b08cdf4599
commit
262abd39bc
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ abstract class DifferentialChangesetHTMLRenderer
|
|||
return null;
|
||||
}
|
||||
} else {
|
||||
$none = $none;
|
||||
$none = hsprintf('');
|
||||
switch ($change) {
|
||||
|
||||
case DifferentialChangeType::TYPE_ADD:
|
||||
|
|
Loading…
Add table
Reference in a new issue