Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2628343
D25295.1732022820.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
923 B
Referenced Files
None
Subscribers
None
D25295.1732022820.diff
View Options
diff --git a/src/applications/repository/xaction/PhabricatorRepositoryMaintenanceTransaction.php b/src/applications/repository/xaction/PhabricatorRepositoryMaintenanceTransaction.php
--- a/src/applications/repository/xaction/PhabricatorRepositoryMaintenanceTransaction.php
+++ b/src/applications/repository/xaction/PhabricatorRepositoryMaintenanceTransaction.php
@@ -25,11 +25,11 @@
$old = $this->getOldValue();
$new = $this->getNewValue();
- if (strlen($old) && !strlen($new)) {
+ if (phutil_nonempty_string($old) && !phutil_nonempty_string($new)) {
return pht(
'%s took this repository out of maintenance mode.',
$this->renderAuthor());
- } else if (!strlen($old) && strlen($new)) {
+ } else if (!phutil_nonempty_string($old) && phutil_nonempty_string($new)) {
return pht(
'%s put this repository into maintenance mode.',
$this->renderAuthor());
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Nov 19, 13:27 (19 h, 31 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
977756
Default Alt Text
D25295.1732022820.diff (923 B)
Attached To
Mode
D25295: Fix PHP 8.1 "strlen(null)" exception on History page of Diffusion repo after setting maintenance mode
Attached
Detach File
Event Timeline
Log In to Comment