Page MenuHomePhorge

D25284.1732063509.diff
No OneTemporary

D25284.1732063509.diff

diff --git a/src/applications/repository/xaction/PhabricatorRepositoryEncodingTransaction.php b/src/applications/repository/xaction/PhabricatorRepositoryEncodingTransaction.php
--- a/src/applications/repository/xaction/PhabricatorRepositoryEncodingTransaction.php
+++ b/src/applications/repository/xaction/PhabricatorRepositoryEncodingTransaction.php
@@ -17,12 +17,12 @@
$old = $this->getOldValue();
$new = $this->getNewValue();
- if (strlen($old) && !strlen($new)) {
+ if ($old !== null && $new === null) {
return pht(
'%s removed the %s encoding configured for this repository.',
$this->renderAuthor(),
$this->renderOldValue());
- } else if (strlen($new) && !strlen($old)) {
+ } else if ($new !== null && $old === null) {
return pht(
'%s set the encoding for this repository to %s.',
$this->renderAuthor(),

File Metadata

Mime Type
text/plain
Expires
Wed, Nov 20, 00:45 (20 h, 4 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
979591
Default Alt Text
D25284.1732063509.diff (893 B)

Event Timeline